Serhiy Storchaka added the comment:

I concur with Antoine.

copy.deepcopy() should be used with care since it recursively copies all 
referred data. In case of generators the data can be referred implicitly. Every 
global value cached in local variable, every passed argument, every nonlocal 
variable should be copied. This may not just wastes memory and CPU time, but 
change the semantic.

----------
nosy: +serhiy.storchaka
resolution:  -> rejected
stage: needs patch -> resolved
status: open -> closed

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue11299>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to