Message226123
https://docs.python.org/<version>/library/copy.html
"Two problems often exist with deep copy operations that don’t exist with shallow 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., administrative data structures that should be shared even between copies."
I believe the last line in above paragraph is missing a 'not' ahead of 'be shared'.
It should read:
"administrative data structures that should be not shared even between copies" |
|
Date |
User |
Action |
Args |
2014-08-30 07:41:40 | shlsh | set | recipients:
+ shlsh, docs@python |
2014-08-30 07:41:40 | shlsh | set | messageid: <1409384500.34.0.359700008646.issue22305@psf.upfronthosting.co.za> |
2014-08-30 07:41:40 | shlsh | link | issue22305 messages |
2014-08-30 07:41:39 | shlsh | create | |
|