Fix for issue #16800: Use buffered write to handle EINTR.

This commit is contained in:
Serhiy Storchaka 2013-02-13 01:00:17 +02:00
commit 7e298d0aa5
1 changed files with 2 additions and 2 deletions

View File

@ -176,7 +176,7 @@ def _get_default_tempdir():
fd = _os.open(filename, _bin_openflags, 0o600)
try:
try:
fp = _io.open(fd, 'wb', buffering=0, closefd=False)
with _io.open(fd, 'wb', closefd=False) as fp:
fp.write(b'blat')
finally:
_os.close(fd)