File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44.. module :: copy
55 :synopsis: Shallow and deep copy operations.
66
7- This module provides generic (shallow and deep) copying operations.
7+ Assignment statements in Python do not copy objects, they create bindings
8+ between a target and an object. For collections that are mutable or contain
9+ mutable items, a copy is sometimes needed so one can change one copy without
10+ changing the other. This module provides generic shallow and deep copy
11+ operations (explained below).
812
913
1014Interface summary:
Original file line number Diff line number Diff line change @@ -113,6 +113,8 @@ Core and Builtins
113113Library
114114-------
115115
116+ - Issue #9021: Add an introduction to the copy module documentation.
117+
116118- Issue #6005: Examples in the socket library documentation use sendall, where
117119 relevant, instead send method.
118120
You can’t perform that action at this time.
0 commit comments