mirror of
https://github.com/python/cpython.git
synced 2025-08-30 21:48:47 +00:00
Issue #6551: test_zipimport could import and then destroy some modules of
the encodings package, which would make other tests fail further down the road because the internally cached encoders and decoders would point to empty global variables.
This commit is contained in:
parent
88d1bc448b
commit
060cee221b
4 changed files with 26 additions and 7 deletions
|
@ -48,13 +48,11 @@ class TestPkg(unittest.TestCase):
|
|||
self.root = None
|
||||
self.pkgname = None
|
||||
self.syspath = list(sys.path)
|
||||
self.sysmodules = sys.modules.copy()
|
||||
self.modules_before = support.modules_setup()
|
||||
|
||||
def tearDown(self):
|
||||
sys.path[:] = self.syspath
|
||||
sys.modules.clear()
|
||||
sys.modules.update(self.sysmodules)
|
||||
del self.sysmodules
|
||||
support.modules_cleanup(*self.modules_before)
|
||||
cleanout(self.root)
|
||||
|
||||
# delete all modules concerning the tested hiearchy
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue