Another fix for #1414

This commit is contained in:
Christian Heimes 2007-11-12 19:53:03 +00:00
parent f19169f2d5
commit db4a2ef23a
2 changed files with 5 additions and 2 deletions

View File

@ -4,7 +4,6 @@ from __future__ import with_statement
from test.test_support import captured_stdout, run_unittest
import unittest
import sys, os
import warnings
class FrozenTests(unittest.TestCase):
def test_frozen(self):

View File

@ -43,14 +43,18 @@ def fixdir(lst):
# from package import * (defined in __init__)
class Test(unittest.TestCase):
class TestPkg(unittest.TestCase):
def setUp(self):
self.root = None
self.syspath = list(sys.path)
self.sysmodules = sys.modules.copy()
def tearDown(self):
sys.path[:] = self.syspath
sys.modules.clear()
sys.modules.update(self.sysmodules)
del self.sysmodules
cleanout(self.root)
def run_code(self, code):