summaryrefslogtreecommitdiff
path: root/Tools/compiler
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2002-08-09 16:38:32 +0000
committerGuido van Rossum <guido@python.org>2002-08-09 16:38:32 +0000
commit042b41c0e891c6071830014b6203e7186ccbaeac (patch)
tree7ebaf9080d58c3016587794b513a37bf400a7c06 /Tools/compiler
parent905891ce668abf48eff74828e16652a274433162 (diff)
downloadcpython-042b41c0e891c6071830014b6203e7186ccbaeac.tar.gz
Massive changes from SF 589982 (tempfile.py rewrite, by Zack
Weinberg). This changes all uses of deprecated tempfile functions to the recommended ones.
Diffstat (limited to 'Tools/compiler')
-rw-r--r--Tools/compiler/regrtest.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/Tools/compiler/regrtest.py b/Tools/compiler/regrtest.py
index aae0ec255d..def07c2faa 100644
--- a/Tools/compiler/regrtest.py
+++ b/Tools/compiler/regrtest.py
@@ -15,15 +15,13 @@ import test
import tempfile
def copy_test_suite():
- dest = tempfile.mktemp()
- os.mkdir(dest)
+ dest = tempfile.mkdtemp()
os.system("cp -r %s/* %s" % (test.__path__[0], dest))
print "Creating copy of test suite in", dest
return dest
def copy_library():
- dest = tempfile.mktemp()
- os.mkdir(dest)
+ dest = tempfile.mkdtemp()
libdir = os.path.split(test.__path__[0])[0]
print "Found standard library in", libdir
print "Creating copy of standard library in", dest