Nick Coghlan <ncogh...@gmail.com> added the comment:

Dave, decoupling the lifecycle of the created file from the object that created 
it is exactly what delete=False already covers. The complicated dance in 
NamedTemporaryFile is only to make *__del__* work  a bit more reliably during 
process shutdown (due to some messy internal problems with what CPython is 
doing at that point). If you're doing deterministic cleanup (even via atexit), 
you don't need any of that - you can just use os.unlink().

----------

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

Reply via email to