STINNER Victor added the comment:

atomic_write.patch calls os.replace(src, dst) whereas the src file is open. It 
works on Linux, but it sounds a little bit strange to me and may fail on other 
platforms.

Here is another patch (atomic_write_mkstemp.patch) using tempfile.mkstemp() 
instead of tempfile.NamedTemporaryFile(delete=True) to control when the file is 
closed and removed.

----------
Added file: http://bugs.python.org/file30275/atomic_write_mkstemp.patch

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

Reply via email to