[issue27416] typo / missing word in docs.python.org/2/library/copy.html

2016-06-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9efe0e718914 by Victor Stinner in branch '2.7': Issue #27416: clarify copy doc https://hg.python.org/cpython/rev/9efe0e718914 New changeset 54e9ca0a1639 by Victor Stinner in branch '3.5': Issue #27416: clarify copy doc

[issue27416] typo / missing word in docs.python.org/2/library/copy.html

2016-06-30 Thread STINNER Victor
STINNER Victor added the comment: > Because deep copy copies everything it may copy too much, e.g., > administrative data structures that should be shared even between copies. I agree that the sentence sounds wrong. I applied David's patch, it also helped me to understand. Thanks :-)

[issue27416] typo / missing word in docs.python.org/2/library/copy.html

2016-06-29 Thread Paul Killey
Paul Killey added the comment: Ah, I see now -- your comment clarified it for me. Thanks. -- ___ Python tracker ___

[issue27416] typo / missing word in docs.python.org/2/library/copy.html

2016-06-29 Thread R. David Murray
R. David Murray added the comment: No, the text is correct. Perhaps it would be clearer if the 'even' were moved to the front of the phrase? "...it may copy too much, even data structures that should be shared between copies." -- nosy: +r.david.murray

[issue27416] typo / missing word in docs.python.org/2/library/copy.html

2016-06-29 Thread Paul Killey
Paul Killey added the comment: I'm sorry, 'not' could be missing between 'should' and 'be' --- 'should not be shared' -- ___ Python tracker ___

[issue27416] typo / missing word in docs.python.org/2/library/copy.html

2016-06-29 Thread Paul Killey
New submission from Paul Killey: I wonder if the word 'not' is missing between 'that' and 'should' in this sentence in https://docs.python.org/2/library/copy.html? Because deep copy copies everything it may copy too much, e.g., administrative data structures that should be shared even between