Message319581
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 issue in 2.7.14 and 3.6.2.
>>> import sys
>>> a = type(sys)('a')
>>> b = a.__dict__
>>> b['__name__'] is None
False
>>> del a
>>> b['__name__'] is None
True |
|
Date |
User |
Action |
Args |
2018-06-15 03:34:11 | natedogith1 | set | recipients:
+ natedogith1 |
2018-06-15 03:34:11 | natedogith1 | set | messageid: <1529033651.78.0.947875510639.issue33867@psf.upfronthosting.co.za> |
2018-06-15 03:34:11 | natedogith1 | link | issue33867 messages |
2018-06-15 03:34:11 | natedogith1 | create | |
|