diff options
author | R. David Murray <rdmurray@bitdance.com> | 2010-03-24 00:29:21 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2010-03-24 00:29:21 (GMT) |
commit | a1135543dd8360a5032621f8760e3ff437dc4d0b (patch) | |
tree | b04ff02b97c7a86be7e3ffbc9bf36f3806acfa10 /Lib | |
parent | 8bc4bbd21d324b7d4740fecf40a184e952ecb354 (diff) | |
download | cpython-a1135543dd8360a5032621f8760e3ff437dc4d0b.zip cpython-a1135543dd8360a5032621f8760e3ff437dc4d0b.tar.gz cpython-a1135543dd8360a5032621f8760e3ff437dc4d0b.tar.bz2 |
Fix porting mistake in r79298.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_platform.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_platform.py b/Lib/test/test_platform.py index 7108779..e4051f9 100644 --- a/Lib/test/test_platform.py +++ b/Lib/test/test_platform.py @@ -134,7 +134,7 @@ class PlatformTest(unittest.TestCase): # using it, per # http://blogs.msdn.com/david.wang/archive/2006/03/26/HOWTO-Detect-Process-Bitness.aspx try: - with test_support.EnvironmentVarGuard() as environ: + with support.EnvironmentVarGuard() as environ: if 'PROCESSOR_ARCHITEW6432' in environ: del environ['PROCESSOR_ARCHITEW6432'] environ['PROCESSOR_ARCHITECTURE'] = 'foo' |