mirror of https://github.com/python/cpython
Fix for issue #16800: Use buffered write to handle EINTR.
This commit is contained in:
commit
7e298d0aa5
|
@ -176,8 +176,8 @@ def _get_default_tempdir():
|
|||
fd = _os.open(filename, _bin_openflags, 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:
|
||||
|
|
Loading…
Reference in New Issue