STINNER Victor <vstin...@python.org> added the comment:

If you want to get a reliable behavior, don't rely on destructors. Python 
finalization is not determistic and destructors can be called while Python is 
not longer fully functional.

Release ressources explicitly. For example, use multiprocessing.Pool with a 
context manager, or even call close() and join() methods explicitly.

----------

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

Reply via email to