[issue15723] Python breaks OS' append guarantee on file writes

Charles-François Natali report at bugs.python.org
Fri Aug 24 11:48:25 CEST 2012


Charles-François Natali added the comment:

I wouldn't rely on O_APPEND too much:
- it won't work on NFS, and probably other non-local filesystems
- it doesn't actually guarantee atomicity, because even though the the file offset and the write is done with locking, there is still the possibility of partial write

----------
nosy: +neologix

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


More information about the Python-bugs-list mailing list