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

The whole point of close() methods is to offer deterministic resource 
management to applications that need it. Pointing out to applications when 
they're relying on CPython's refcounting for prompt resource cleanup is why 
many of the standard types now trigger ResourceWarning for any application that 
relies on the GC to clean up such external resources in __del__.

So, no, we're not going to back away from the explicit guarantee in the 
NamedTemporaryFile docs: "If delete is true (the default), the file is deleted 
as soon as it is closed." (Especially since doing so would also breach backward 
compatibility guarantees)

However, you're right that the exclusive read lock in the current 
implementation makes the default behaviour of NamedTemporaryFile significantly 
less useful on Windows than it is on POSIX systems, so the implementation 
should be changed to behave more like the POSIX variant.

----------

_______________________________________
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