diff options
author | Brett Cannon <brett@python.org> | 2013-06-15 02:26:30 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2013-06-15 02:26:30 (GMT) |
commit | a3c96154d2a8d3dd0023b927a99b485e574c9922 (patch) | |
tree | bdbc356425aa360bbbbdc2d816147a8940ef1723 /Lib/test/test_import.py | |
parent | 15e489f7c54a3ca5e631b7bfaf26e85daf0547bb (diff) | |
download | cpython-a3c96154d2a8d3dd0023b927a99b485e574c9922.zip cpython-a3c96154d2a8d3dd0023b927a99b485e574c9922.tar.gz cpython-a3c96154d2a8d3dd0023b927a99b485e574c9922.tar.bz2 |
Issue #17907: touch up the code for imp.new_module().
Diffstat (limited to 'Lib/test/test_import.py')
-rw-r--r-- | Lib/test/test_import.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_import.py b/Lib/test/test_import.py index 805e9ed..673fb41 100644 --- a/Lib/test/test_import.py +++ b/Lib/test/test_import.py @@ -859,7 +859,6 @@ class ImportlibBootstrapTests(unittest.TestCase): from importlib import machinery mod = sys.modules['_frozen_importlib'] self.assertIs(machinery.FileFinder, mod.FileFinder) - self.assertIs(imp.new_module, mod.new_module) class ImportTracebackTests(unittest.TestCase): |