[Python-checkins] cpython (2.7): Issue #27416: clarify copy doc

victor.stinner python-checkins at python.org
Thu Jun 30 05:51:06 EDT 2016


https://hg.python.org/cpython/rev/9efe0e718914
changeset:   102229:9efe0e718914
branch:      2.7
parent:      102215:ccec979392d7
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Thu Jun 30 11:50:23 2016 +0200
summary:
  Issue #27416: clarify copy doc

Patch written by R. David Murray.

files:
  Doc/library/copy.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/copy.rst b/Doc/library/copy.rst
--- a/Doc/library/copy.rst
+++ b/Doc/library/copy.rst
@@ -44,7 +44,7 @@
   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:
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list