a822bae6e7
- Move Python 2.0 to python. - Remove Python 1.6
12 lines
430 B
Plaintext
12 lines
430 B
Plaintext
--- Lib/tempfile.py.orig Mon Nov 6 00:47:23 2000
|
|
+++ Lib/tempfile.py Mon Nov 6 00:48:02 2000
|
|
@@ -23,7 +23,7 @@ def gettempdir():
|
|
pwd = os.getcwd()
|
|
except (AttributeError, os.error):
|
|
pwd = os.curdir
|
|
- attempdirs = ['/var/tmp', '/usr/tmp', '/tmp', pwd]
|
|
+ attempdirs = ['/var/tmp', '/tmp', pwd]
|
|
if os.name == 'nt':
|
|
attempdirs.insert(0, 'C:\\TEMP')
|
|
attempdirs.insert(0, '\\TEMP')
|