]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Merged revisions 69553 via svnmerge from
authorTarek Ziadé <ziade.tarek@gmail.com>
Thu, 12 Feb 2009 21:04:22 +0000 (21:04 +0000)
committerTarek Ziadé <ziade.tarek@gmail.com>
Thu, 12 Feb 2009 21:04:22 +0000 (21:04 +0000)
svn+ssh://pythondev@svn.python.org/python/branches/py3k

................
  r69553 | tarek.ziade | 2009-02-12 22:02:07 +0100 (Thu, 12 Feb 2009) | 9 lines

  Merged revisions 69551 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk

  ........
    r69551 | tarek.ziade | 2009-02-12 21:56:21 +0100 (Thu, 12 Feb 2009) | 1 line

    fixing the leak introduced in r69304
  ........
................

Lib/distutils/tests/test_build_ext.py

index 4c5723255ad39d4d4fb0e9b6d93d58882675504c..02c42aecb70e1db809c0a78dd7d763857670092f 100644 (file)
@@ -1,6 +1,5 @@
 import sys
 import os
-import tempfile
 import shutil
 from io import StringIO
 
@@ -19,7 +18,8 @@ class BuildExtTestCase(unittest.TestCase):
     def setUp(self):
         # Create a simple test environment
         # Note that we're making changes to sys.path
-        self.tmp_dir = tempfile.mkdtemp(prefix="pythontest_")
+        self.tmp_dir = os.path.join(os.path.dirname(__file__), 'xx')
+        os.mkdir(self.tmp_dir)
         self.sys_path = sys.path[:]
         sys.path.append(self.tmp_dir)