Changeset 391 for python/trunk/Doc/library/copy.rst
- Timestamp:
- Mar 19, 2014, 11:31:01 PM (11 years ago)
- Location:
- python/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk
-
Property svn:mergeinfo
set to
/python/vendor/Python-2.7.6 merged eligible /python/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
python/trunk/Doc/library/copy.rst
r2 r391 5 5 :synopsis: Shallow and deep copy operations. 6 6 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). 8 12 9 13
Note:
See TracChangeset
for help on using the changeset viewer.