Serhiy Storchaka added the comment:

>>> import gc
>>> gc.collect()
23
>>> gc.collect()
0
>>> class A:
...     __slots__ = ()
... 
>>> del A
>>> gc.collect()
2
^ leak

----------

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

Reply via email to