summaryrefslogtreecommitdiff
path: root/Lib/test/test_tempfile.py
diff options
context:
space:
mode:
authorHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-04-27 01:44:28 +0000
committerHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-04-27 01:44:28 +0000
commit7195963aa2b25030ef4662e6879ad27517e63fcc (patch)
tree7e4afe7f95e9f29995900790297d9ee41ca7f8be /Lib/test/test_tempfile.py
parent5afb5c6630540f2b4fb314a9a7c5ea9692e0b0c0 (diff)
downloadcpython-git-7195963aa2b25030ef4662e6879ad27517e63fcc.tar.gz
test_support was renamed to support on py3k.
Diffstat (limited to 'Lib/test/test_tempfile.py')
-rw-r--r--Lib/test/test_tempfile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_tempfile.py b/Lib/test/test_tempfile.py
index 844e608a6f..11674a62fb 100644
--- a/Lib/test/test_tempfile.py
+++ b/Lib/test/test_tempfile.py
@@ -149,7 +149,7 @@ class test__candidate_tempdir_list(TC):
# _candidate_tempdir_list contains the expected directories
# Make sure the interesting environment variables are all set.
- with test_support.EnvironmentVarGuard() as env:
+ with support.EnvironmentVarGuard() as env:
for envname in 'TMPDIR', 'TEMP', 'TMP':
dirname = os.getenv(envname)
if not dirname: