mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Massive changes from SF 589982 (tempfile.py rewrite, by Zack
Weinberg). This changes all uses of deprecated tempfile functions to the recommended ones.
This commit is contained in:
parent
830a5151c1
commit
3b0a3293c3
31 changed files with 134 additions and 149 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue