]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove obsolete code
authorÉric Araujo <merwok@netwok.org>
Sun, 21 Aug 2011 15:37:36 +0000 (17:37 +0200)
committerÉric Araujo <merwok@netwok.org>
Sun, 21 Aug 2011 15:37:36 +0000 (17:37 +0200)
Lib/packaging/tests/test_command_build_ext.py

index 9521adcedfc9759b2219bad62742615f828c151b..4b3e5bce7dee5190db9292edb53705703448d02c 100644 (file)
@@ -24,13 +24,11 @@ class BuildExtTestCase(support.TempdirManager,
         self.tmp_dir = self.mkdtemp()
         self.old_user_base = site.USER_BASE
         site.USER_BASE = self.mkdtemp()
-        build_ext.USER_BASE = site.USER_BASE
 
     def tearDown(self):
         # Get everything back to normal
         if sys.version > "2.6":
             site.USER_BASE = self.old_user_base
-            build_ext.USER_BASE = self.old_user_base
 
         super(BuildExtTestCase, self).tearDown()