openbsd-ports/lang/python/patches/patch-Lib_tempfile_py
jasoni a822bae6e7 - Remove Python 2.0 from python2, this was a mistake.
- Move Python 2.0 to python.
- Remove Python 1.6
2000-12-13 05:26:45 +00:00

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')