mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
Oops, urllib may or may not already be loaded.
This commit is contained in:
@@ -255,7 +255,10 @@ class ImportHooksTestCase(ImportHooksBaseTestCase):
|
||||
# Delete urllib from modules because urlparse was imported above.
|
||||
# Without this hack, test_socket_ssl fails if run in this order:
|
||||
# regrtest.py test_codecmaps_tw test_importhooks test_socket_ssl
|
||||
del sys.modules['urllib']
|
||||
try:
|
||||
del sys.modules['urllib']
|
||||
except KeyError:
|
||||
pass
|
||||
|
||||
def test_main():
|
||||
test_support.run_unittest(ImportHooksTestCase)
|
||||
|
||||
Reference in New Issue
Block a user