cpython (3.5): Issue #27416: clarify copy doc

https://hg.python.org/cpython/rev/54e9ca0a1639 changeset: 102230:54e9ca0a1639 branch: 3.5 parent: 102227:ba4548916f05 user: Victor Stinner <victor.stinner@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 @@ -48,7 +48,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
participants (1)
-
victor.stinner