diff options
author | Walter Dörwald <walter@livinglogic.de> | 2009-04-26 21:39:21 (GMT) |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2009-04-26 21:39:21 (GMT) |
commit | b525e18500885731f958bd4a0114f26cea336500 (patch) | |
tree | f7ac3daec3d7e870dac64abe27c9166269a124c7 /Lib/test/test_site.py | |
parent | 4af362905cb1e8cb56e26a51021de855798227ea (diff) | |
download | cpython-b525e18500885731f958bd4a0114f26cea336500.zip cpython-b525e18500885731f958bd4a0114f26cea336500.tar.gz cpython-b525e18500885731f958bd4a0114f26cea336500.tar.bz2 |
Merged revisions 71984 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r71984 | walter.doerwald | 2009-04-26 22:51:44 +0200 (So, 26 Apr 2009) | 2 lines
Use test.test_support.EnvironmentVarGuard where tests change environment vars.
........
Diffstat (limited to 'Lib/test/test_site.py')
-rw-r--r-- | Lib/test/test_site.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_site.py b/Lib/test/test_site.py index 1bf143a..8d101b3 100644 --- a/Lib/test/test_site.py +++ b/Lib/test/test_site.py @@ -5,7 +5,7 @@ executing have not been removed. """ import unittest -from test.support import run_unittest, TESTFN +from test.support import run_unittest, TESTFN, EnvironmentVarGuard import builtins import os import sys |