[issue33867] Module dicts are wiped on module garbage collection

2020-09-25 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Py

[issue33867] Module dicts are wiped on module garbage collection

2020-09-25 Thread Irit Katriel
Irit Katriel added the comment: I also can't reproduce it on a later version. If this is a 2.7/3.6 only problem, should the issue be closed? -- nosy: +iritkatriel ___ Python tracker

[issue33867] Module dicts are wiped on module garbage collection

2018-06-15 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: I cannot reproduce this in 3.6.5: >>>import sys >>>import gc >>>a = type(sys)('a') >>>b = a.__dict__ >>>print(b['__name__'] is None) False >>>del a >>>gc.collect() >>>print(b['__name__'] is None) False On the other hand, this still happens in 2.7.15:

[issue33867] Module dicts are wiped on module garbage collection

2018-06-15 Thread Xiang Zhang
Change by Xiang Zhang : -- nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.

[issue33867] Module dicts are wiped on module garbage collection

2018-06-14 Thread natedogith1
New submission from natedogith1 : When a module is garbage collected, it fills it's __dict__ with None. issue19255 and issue18214 seem to suggest that this was fixed, along with github pull request 7140 (commit 196b0925ca55bf22ffbb97733cff3e63d4fb6e18). However, this still seems to be an is