home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Enter 2003: The Beautiful Scenery
/
enter-parhaat-2003.iso
/
files
/
Python-2.2.1.exe
/
TEST_TEMPFILE.PY
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2001-10-29
|
237 b
|
11 lines
# 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()