From: Éric Araujo Date: Sun, 21 Aug 2011 15:37:36 +0000 (+0200) Subject: Remove obsolete code X-Git-Tag: v3.3.0a1~1649 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cd7c3d9d5f627eb9217fbdde65d0b57d000cc4e6;p=thirdparty%2FPython%2Fcpython.git Remove obsolete code --- diff --git a/Lib/packaging/tests/test_command_build_ext.py b/Lib/packaging/tests/test_command_build_ext.py index 9521adcedfc9..4b3e5bce7dee 100644 --- a/Lib/packaging/tests/test_command_build_ext.py +++ b/Lib/packaging/tests/test_command_build_ext.py @@ -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()