Commit 0f3bc82c authored by Tarek Ziadé's avatar Tarek Ziadé

Merged revisions 69585 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r69585 | tarek.ziade | 2009-02-13 17:13:16 +0100 (Fri, 13 Feb 2009) | 1 line

  reverted leak fix, to use the one done in py3k branch (r67382)
........
parent f2c97b50
import sys import sys
import os import os
import tempfile
import shutil import shutil
from io import StringIO from io import StringIO
...@@ -22,8 +23,7 @@ class BuildExtTestCase(unittest.TestCase): ...@@ -22,8 +23,7 @@ class BuildExtTestCase(unittest.TestCase):
def setUp(self): def setUp(self):
# Create a simple test environment # Create a simple test environment
# Note that we're making changes to sys.path # Note that we're making changes to sys.path
self.tmp_dir = os.path.join(os.path.dirname(__file__), 'xx') self.tmp_dir = tempfile.mkdtemp(prefix="pythontest_")
os.mkdir(self.tmp_dir)
self.sys_path = sys.path[:] self.sys_path = sys.path[:]
sys.path.append(self.tmp_dir) sys.path.append(self.tmp_dir)
shutil.copy(_get_source_filename(), self.tmp_dir) shutil.copy(_get_source_filename(), self.tmp_dir)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment