Serhiy Storchaka <storchaka+cpyt...@gmail.com> added the comment:

Modules are already cleared in the reverse order.

Clearing module attributes in the reverse order looks interesting. It increases 
chance that modules and other imported names which can be used in __del__ will 
be deleted after executing __del__ if the module has references to an instance 
of a class defined in the same module. And if the class was defined in other 
module, it will be deleted later because dependencies are cleared after 
depended modules.

On other hand, private attributes are currently removed first, so we perhaps 
need to change it to make the strategy working.

----------
nosy: +serhiy.storchaka

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

Reply via email to