[New-bugs-announce] [issue10188] tempfile.TemporaryDirectory may throw errors at shutdown

Nick Coghlan report at bugs.python.org
Sun Oct 24 12:53:00 CEST 2010


New submission from Nick Coghlan <ncoghlan at gmail.com>:

During interpreter shutdown, modules can become unusable as module globals are set to None. This is a problem for tempfile.TemporaryDirectory, as it needs working os, os.path and stat modules in order to clean up the filesystem.

The class makes a valiant attempt at reducing the frequency of these errors, but it is ultimately useless, since the three modules internally rely on their various globals remaining valid.

Issue #812369 may be a possible solution to this problem, or perhaps even an explicit list of essential modules that are nulled out only after all other modules have been destroyed.

----------
messages: 119505
nosy: ncoghlan
priority: normal
severity: normal
status: open
title: tempfile.TemporaryDirectory may throw errors at shutdown

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue10188>
_______________________________________


More information about the New-bugs-announce mailing list