[issue14775] Slow unpickling of certain dictionaries in python 2.7 vs python 2.6

stw report at bugs.python.org
Mon May 21 22:36:25 CEST 2012


stw <silktw at googlemail.com> added the comment:

One other thing - python 2.7 added the is_tracked function to the gc module. As I understand it (from issue #4074) tuples of atomic types are supposed to be untracked. However, in python 2.7:

>>> gc.is_tracked((1, 2))
True
>>> gc.is_tracked("hello")
True

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue14775>
_______________________________________


More information about the Python-bugs-list mailing list