Christian Heimes <li...@cheimes.de> added the comment:

At the end of a Python process, the interpreter is shut down in multiple steps. 
Object finalizers such as __del__ may be executed late in the interpreter shut 
down process. In your case, most of the interpreter is already gone. There 
isn't anything we can do to solve the problem.

That's why we recommend explicit resource management with the "with" statement. 
The atexit module is another way to execute cleanup hooks before the 
interpreter is shut down.

----------
nosy: +christian.heimes

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

Reply via email to