From bc44893155033fddca534ab94acbb9145d7d8a0e Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 30 Jun 2016 11:50:23 +0200 Subject: [PATCH] Issue #27416: clarify copy doc Patch written by R. David Murray. --- Doc/library/copy.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/copy.rst b/Doc/library/copy.rst index 0f23a95398..a5378e54ec 100644 --- a/Doc/library/copy.rst +++ b/Doc/library/copy.rst @@ -44,7 +44,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: -- 2.50.1