[Python-checkins] r79368 - python/branches/py3k/Lib/test/test_platform.py

r.david.murray python-checkins at python.org
Wed Mar 24 01:29:21 CET 2010


Author: r.david.murray
Date: Wed Mar 24 01:29:21 2010
New Revision: 79368

Log:
Fix porting mistake in r79298.


Modified:
   python/branches/py3k/Lib/test/test_platform.py

Modified: python/branches/py3k/Lib/test/test_platform.py
==============================================================================
--- python/branches/py3k/Lib/test/test_platform.py	(original)
+++ python/branches/py3k/Lib/test/test_platform.py	Wed Mar 24 01:29:21 2010
@@ -134,7 +134,7 @@
         # 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'


More information about the Python-checkins mailing list