From: Brett Cannon Date: Wed, 4 Apr 2012 21:31:16 +0000 (-0400) Subject: Fix test_site from modifying sysconfig._CONFIG_VARS. X-Git-Tag: v3.3.0a3~294^2~6 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8ac95ee62af237d21c695578cb19f54ddc1234a8;p=python Fix test_site from modifying sysconfig._CONFIG_VARS. --- diff --git a/Lib/test/test_site.py b/Lib/test/test_site.py index ba426494fb..29286c710b 100644 --- a/Lib/test/test_site.py +++ b/Lib/test/test_site.py @@ -39,6 +39,7 @@ class HelperFunctionsTests(unittest.TestCase): self.old_base = site.USER_BASE self.old_site = site.USER_SITE self.old_prefixes = site.PREFIXES + self.original_vars = sysconfig._CONFIG_VARS self.old_vars = copy(sysconfig._CONFIG_VARS) def tearDown(self): @@ -47,7 +48,9 @@ class HelperFunctionsTests(unittest.TestCase): site.USER_BASE = self.old_base site.USER_SITE = self.old_site site.PREFIXES = self.old_prefixes - sysconfig._CONFIG_VARS = self.old_vars + sysconfig._CONFIG_VARS = self.original_vars + sysconfig._CONFIG_VARS.clear() + sysconfig._CONFIG_VARS.update(self.old_vars) def test_makepath(self): # Test makepath() have an absolute path for its first return value