Kaydet (Commit) cd7c3d9d authored tarafından Éric Araujo's avatar Éric Araujo

Remove obsolete code

üst 006b4855
...@@ -24,13 +24,11 @@ class BuildExtTestCase(support.TempdirManager, ...@@ -24,13 +24,11 @@ class BuildExtTestCase(support.TempdirManager,
self.tmp_dir = self.mkdtemp() self.tmp_dir = self.mkdtemp()
self.old_user_base = site.USER_BASE self.old_user_base = site.USER_BASE
site.USER_BASE = self.mkdtemp() site.USER_BASE = self.mkdtemp()
build_ext.USER_BASE = site.USER_BASE
def tearDown(self): def tearDown(self):
# Get everything back to normal # Get everything back to normal
if sys.version > "2.6": if sys.version > "2.6":
site.USER_BASE = self.old_user_base site.USER_BASE = self.old_user_base
build_ext.USER_BASE = self.old_user_base
super(BuildExtTestCase, self).tearDown() super(BuildExtTestCase, self).tearDown()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment