diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-06-30 09:50:23 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-06-30 09:50:23 (GMT) |
commit | 0ab67dfb7c8dc7ddb983c1accee6697238c03810 (patch) | |
tree | 5422f221b28c253ba32ec8c5322e60e6471ac849 /Doc/library/copy.rst | |
parent | eb51faadbe278fbc970c65ba27015b37b7e42c8d (diff) | |
download | cpython-0ab67dfb7c8dc7ddb983c1accee6697238c03810.zip cpython-0ab67dfb7c8dc7ddb983c1accee6697238c03810.tar.gz cpython-0ab67dfb7c8dc7ddb983c1accee6697238c03810.tar.bz2 |
Issue #27416: clarify copy doc
Patch written by R. David Murray.
Diffstat (limited to 'Doc/library/copy.rst')
-rw-r--r-- | Doc/library/copy.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/copy.rst b/Doc/library/copy.rst index a8adcad..d0b861d 100644 --- a/Doc/library/copy.rst +++ b/Doc/library/copy.rst @@ -48,7 +48,7 @@ copy operations: reference to themselves) may cause a recursive loop. * Because deep copy copies *everything* it may copy too much, e.g., - administrative data structures that should be shared even between copies. + even administrative data structures that should be shared even between copies. The :func:`deepcopy` function avoids these problems by: |