Ignore:
Timestamp:
Mar 19, 2014, 11:31:01 PM (11 years ago)
Author:
dmik
Message:

python: Merge vendor 2.7.6 to trunk.

Location:
python/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • python/trunk

  • python/trunk/Doc/library/copy.rst

    r2 r391  
    55   :synopsis: Shallow and deep copy operations.
    66
    7 This module provides generic (shallow and deep) copying operations.
     7Assignment statements in Python do not copy objects, they create bindings
     8between a target and an object. For collections that are mutable or contain
     9mutable items, a copy is sometimes needed so one can change one copy without
     10changing the other. This module provides generic shallow and deep copy
     11operations (explained below).
    812
    913
Note: See TracChangeset for help on using the changeset viewer.