Oops, urllib may or may not already be loaded.

This commit is contained in:
Neal Norwitz 2006-03-04 23:56:53 +00:00
parent 0917988f7c
commit 83cbb24cd4
1 changed files with 4 additions and 1 deletions

View File

@ -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)