From 9b967c62181b73d8e785d677c02b646465a803e5 Mon Sep 17 00:00:00 2001 From: CuriousLearner Date: Sat, 18 Feb 2017 15:04:58 +0530 Subject: [PATCH 1/3] bpo-29506: Fixes documentation for usage of deepcopy in copy module --- Doc/library/copy.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/copy.rst b/Doc/library/copy.rst index d0b861d469bc05..965032e1c65e39 100644 --- a/Doc/library/copy.rst +++ b/Doc/library/copy.rst @@ -47,8 +47,8 @@ copy operations: * Recursive objects (compound objects that, directly or indirectly, contain a reference to themselves) may cause a recursive loop. -* Because deep copy copies *everything* it may copy too much, e.g., - even administrative data structures that should be shared even between copies. +* Because deep copy copies everything it may copy too much, such as state + which is intended to be shared between copies. The :func:`deepcopy` function avoids these problems by: From 89885a037c5875eed3eda0c9efe730079788dbdc Mon Sep 17 00:00:00 2001 From: CuriousLearner Date: Mon, 27 Mar 2017 22:38:21 +0530 Subject: [PATCH 2/3] Address review comments; changes state to data --- 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 965032e1c65e39..2041d9175ea587 100644 --- a/Doc/library/copy.rst +++ b/Doc/library/copy.rst @@ -47,7 +47,7 @@ copy operations: * Recursive objects (compound objects that, directly or indirectly, contain a reference to themselves) may cause a recursive loop. -* Because deep copy copies everything it may copy too much, such as state +* Because deep copy copies everything it may copy too much, such as data which is intended to be shared between copies. The :func:`deepcopy` function avoids these problems by: From 025c281ad4fa6195ccb942d6feaa7b738e4ff50b Mon Sep 17 00:00:00 2001 From: Nick Coghlan Date: Sun, 9 Apr 2017 20:10:19 +1000 Subject: [PATCH 3/3] Update ACKS --- Misc/ACKS | 1 + 1 file changed, 1 insertion(+) diff --git a/Misc/ACKS b/Misc/ACKS index 5ab6411688c7d1..783e5ab250150d 100644 --- a/Misc/ACKS +++ b/Misc/ACKS @@ -770,6 +770,7 @@ Lawrence Kesteloot Vivek Khera Dhiru Kholia Akshit Khurana +Sanyam Khurana Mads Kiilerich Jason Killen Jan Kim