From: Victor Stinner Date: Thu, 30 Jun 2016 09:50:23 +0000 (+0200) Subject: Issue #27416: clarify copy doc X-Git-Tag: v3.6.0a3~51^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0ab67dfb7c8dc7ddb983c1accee6697238c03810;p=thirdparty%2FPython%2Fcpython.git Issue #27416: clarify copy doc Patch written by R. David Murray. --- diff --git a/Doc/library/copy.rst b/Doc/library/copy.rst index a8adcadbe05e..d0b861d469bc 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: