Марк Коренберг added the comment:

So, I'm required to re-implement NamedTemporaryFile by hand like that:


    fd, name = tempfile.mkstemp(...)
    try:
        with io.open(fd, ...) as fff:
            fff.write('hello')
            fff.flush()
            os.fdatasync(fff)
            os.rename(name, ...)
    except:
        os.unlink(name)
        raise


This is sad to see...

----------

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

Reply via email to