Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
7fdfc2d231e4d41a5bb6dd737200d3460aa39773
/
.
/
Lib
/
test
/
test_tempfile.py
blob: 286e79cfa459ee7053d414db89919d16067bb790 [
file
]
# SF bug #476138: tempfile behavior across platforms
# Ensure that a temp file can be closed any number of times without error.
import
tempfile
f
=
tempfile
.
TemporaryFile
(
"w+b"
)
f
.
write
(
'abc\n'
)
f
.
close
()
f
.
close
()
f
.
close
()