[issue12075] python3.2 memory leak when setting integer key in dictionary

Amaury Forgeot d'Arc report at bugs.python.org
Sat May 14 10:00:28 CEST 2011


Amaury Forgeot d'Arc <amauryfa at gmail.com> added the comment:

It's simply because all classes form a cycle (Foo -> Foo.__mro__ -> Foo)
A class and class attributes can only be freed with gc.collect().
Did you disable the garbage collector?

----------
nosy: +amaury.forgeotdarc

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


More information about the Python-bugs-list mailing list