Commit 7d360038 authored by Serhiy Storchaka's avatar Serhiy Storchaka

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

parent 0127de0b
......@@ -197,8 +197,8 @@ def _get_default_tempdir():
fd = _os.open(filename, flags, 0o600)
try:
try:
fp = _io.open(fd, 'wb', buffering=0, closefd=False)
fp.write(b'blat')
with _io.open(fd, 'wb', closefd=False) as fp:
fp.write(b'blat')
finally:
_os.close(fd)
finally:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment