Changeset 3402 for trunk/essentials/dev-lang/python/Lib/tempfile.py
- Timestamp:
- Jun 11, 2007, 12:50:36 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/essentials/dev-lang/python/Lib/tempfile.py
r3390 r3402 437 437 return _TemporaryFileWrapper(file, name) 438 438 439 if _os.name != 'posix' or _os.sys.platform == 'cygwin' or _os.sys.platform == 'os2emx' :439 if _os.name != 'posix' or _os.sys.platform == 'cygwin' or _os.sys.platform == 'os2emx' or _os.sys.platform == 'os2knix': 440 440 # On non-POSIX and Cygwin systems, assume that we cannot unlink a file 441 441 # while it is open.
Note:
See TracChangeset
for help on using the changeset viewer.