diff options
author | Brett Cannon <brett@python.org> | 2012-04-29 16:50:03 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2012-04-29 16:50:03 (GMT) |
commit | acf85cd1314e498b1736677a1e08cfddc956c4ac (patch) | |
tree | dfd63a6562c931a4d02770927a589f4b41c35ebb /Lib/test/test_sys.py | |
parent | e383e82e0484aed79f2c78516e3f223345408d4b (diff) | |
download | cpython-acf85cd1314e498b1736677a1e08cfddc956c4ac.zip cpython-acf85cd1314e498b1736677a1e08cfddc956c4ac.tar.gz cpython-acf85cd1314e498b1736677a1e08cfddc956c4ac.tar.bz2 |
Issue #13959: Re-implement imp.NullImporter in Lib/imp.py.
Diffstat (limited to 'Lib/test/test_sys.py')
-rw-r--r-- | Lib/test/test_sys.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index 0f93610..2b9abfc 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -889,9 +889,6 @@ class SizeofTest(unittest.TestCase): # _ast.AST import _ast check(_ast.AST(), size(h + 'P')) - # imp.NullImporter - import imp - check(imp.NullImporter(self.file.name), size(h + '')) try: raise TypeError except TypeError: |