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
........
import sys
import os
-import tempfile
import shutil
from io import StringIO
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)
shutil.copy(_get_source_filename(), self.tmp_dir)