- 2.1 collectionsContainer Data Types
- 2.2 arraySequence of Fixed-Type Data
- 2.3 heapqHeap Sort Algorithm
- 2.4 bisectMaintain Lists in Sorted Order
- 2.5 QueueThread-Safe FIFO Implementation
- 2.6 structBinary Data Structures
- 2.7 weakrefImpermanent References to Objects
- 2.8 copyDuplicate Objects
- 2.9 pprintPretty-Print Data Structures
2.8 copy—Duplicate Objects
- Purpose Provides functions for duplicating objects using shallow or deep copy semantics.
- Python Version 1.4 and later
The copy module includes two functions, copy() and deepcopy(), for duplicating existing objects.
2.8.1 Shallow Copies
The shallow copy created by copy() is a new container populated with references to the contents of the original object. When making a shallow copy of a list object, a new list is constructed and the elements of the original object are appended to it.
import copy class MyClass: def __init__(self, name): self.name = name def __cmp__(self, other): return cmp(self.name, other.name) a = MyClass('a') my_list = [ a ] dup = copy.copy(my_list) print ' my_list:', my_list print ' dup:', dup print ' dup is my_list:', (dup is my_list) print ' dup == my_list:', (dup == my_list) print 'dup[0] is my_list[0]:', (dup[0] is my_list[0]) print 'dup[0] == my_list[0]:', (dup[0] == my_list[0])
For a shallow copy, the MyClass instance is not duplicated, so the reference in the dup list is to the same object that is in my_list.
$ python copy_shallow.py my_list: [<__main__.MyClass instance at 0x100dadc68>] dup: [<__main__.MyClass instance at 0x100dadc68>] dup is my_list: False dup == my_list: True dup[0] is my_list[0]: True dup[0] == my_list[0]: True
2.8.2 Deep Copies
The deep copy created by deepcopy() is a new container populated with copies of the contents of the original object. To make a deep copy of a list, a new list is constructed, the elements of the original list are copied, and then those copies are appended to the new list.
Replacing the call to copy() with deepcopy() makes the difference in the output apparent.
dup = copy.deepcopy(my_list)
The first element of the list is no longer the same object reference, but when the two objects are compared, they still evaluate as being equal.
$ python copy_deep.py my_list: [<__main__.MyClass instance at 0x100dadc68>] dup: [<__main__.MyClass instance at 0x100dadc20>] dup is my_list: False dup == my_list: True dup[0] is my_list[0]: False dup[0] == my_list[0]: True
2.8.3 Customizing Copy Behavior
It is possible to control how copies are made using the __copy__() and __deepcopy__() special methods.
- __copy__() is called without any arguments and should return a shallow copy of the object.
- __deepcopy__() is called with a memo dictionary and should return a deep copy of the object. Any member attributes that need to be deep-copied should be passed to copy.deepcopy(), along with the memo dictionary, to control for recursion. (The memo dictionary is explained in more detail later.)
This example illustrates how the methods are called.
import copy class MyClass: def __init__(self, name): self.name = name def __cmp__(self, other): return cmp(self.name, other.name) def __copy__(self): print '__copy__()' return MyClass(self.name) def __deepcopy__(self, memo): print '__deepcopy__(%s)' % str(memo) return MyClass(copy.deepcopy(self.name, memo)) a = MyClass('a') sc = copy.copy(a) dc = copy.deepcopy(a)
The memo dictionary is used to keep track of the values that have been copied already, to avoid infinite recursion.
$ python copy_hooks.py __copy__() __deepcopy__({})
2.8.4 Recursion in Deep Copy
To avoid problems with duplicating recursive data structures, deepcopy() uses a dictionary to track objects that have already been copied. This dictionary is passed to the __deepcopy__() method so it can be examined there as well.
This example shows how an interconnected data structure, such as a directed graph, can assist with protecting against recursion by implementing a __deepcopy__() method.
import copy import pprint class Graph: def __init__(self, name, connections): self.name = name self.connections = connections def add_connection(self, other): self.connections.append(other) def __repr__(self): return 'Graph(name=%s, id=%s)' % (self.name, id(self)) def __deepcopy__(self, memo): print '\nCalling __deepcopy__ for %r' % self if self in memo: existing = memo.get(self) print ' Already copied to %r' % existing return existing print ' Memo dictionary:' pprint.pprint(memo, indent=4, width=40) dup = Graph(copy.deepcopy(self.name, memo), []) print ' Copying to new object %s' % dup memo[self] = dup for c in self.connections: dup.add_connection(copy.deepcopy(c, memo)) return dup root = Graph('root', []) a = Graph('a', [root]) b = Graph('b', [a, root]) root.add_connection(a) root.add_connection(b) dup = copy.deepcopy(root)
The Graph class includes a few basic directed-graph methods. An instance can be initialized with a name and a list of existing nodes to which it is connected. The add_connection() method is used to set up bidirectional connections. It is also used by the deepcopy operator.
The __deepcopy__() method prints messages to show how it is called and manages the memo dictionary contents, as needed. Instead of copying the connection list wholesale, it creates a new list and appends copies of the individual connections to it. That ensures that the memo dictionary is updated as each new node is duplicated and avoids recursion issues or extra copies of nodes. As before, it returns the copied object when it is done.
There are several cycles in the graph shown in Figure 2.1, but handling the recursion with the memo dictionary prevents the traversal from causing a stack overflow error. When the root node is copied, the output is as follows.
$ python copy_recursion.py Calling __deepcopy__ for Graph(name=root, id=4309347072) Memo dictionary: { } Copying to new object Graph(name=root, id=4309347360) Calling __deepcopy__ for Graph(name=a, id=4309347144) Memo dictionary: { Graph(name=root, id=4309347072): Graph(name=root, id=4309347360), 4307936896: ['root'], 4309253504: 'root'} Copying to new object Graph(name=a, id=4309347504) Calling __deepcopy__ for Graph(name=root, id=4309347072) Already copied to Graph(name=root, id=4309347360) Calling __deepcopy__ for Graph(name=b, id=4309347216) Memo dictionary: { Graph(name=root, id=4309347072): Graph(name=root, id=4309347360), Graph(name=a, id=4309347144): Graph(name=a, id=4309347504), 4307936896: [ 'root', 'a', Graph(name=root, id=4309347072), Graph(name=a, id=4309347144)], 4308678136: 'a', 4309253504: 'root', 4309347072: Graph(name=root, id=4309347360), 4309347144: Graph(name=a, id=4309347504)} Copying to new object Graph(name=b, id=4309347864)
Figure 2.1 Deep copy for an Object Graph With Cycles
The second time the root node is encountered, while the a node is being copied, __deepcopy__() detects the recursion and reuses the existing value from the memo dictionary instead of creating a new object.
See Also:
- copy (http://docs.python.org/library/copy.html) The standard library documentation for this module.