diff options
author | Brett Cannon <brett@python.org> | 2012-12-23 00:38:32 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2012-12-23 00:38:32 (GMT) |
commit | 2909d6b47c5a96b38099d5e00fd68e6b5c3ef4da (patch) | |
tree | f9353ef041ed41113fce0c3eec3f6bfac83b537f /Lib | |
parent | a81ef640f1fcc4b8378bc6887b4ba989a1eae4c5 (diff) | |
parent | 73b969ec70ff4d422bff34d63cfb220cfac96779 (diff) | |
download | cpython-2909d6b47c5a96b38099d5e00fd68e6b5c3ef4da.zip cpython-2909d6b47c5a96b38099d5e00fd68e6b5c3ef4da.tar.gz cpython-2909d6b47c5a96b38099d5e00fd68e6b5c3ef4da.tar.bz2 |
merge with 3.3
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/modulefinder.py | 1 | ||||
-rw-r--r-- | Lib/test/test_modulefinder.py | 15 |
2 files changed, 16 insertions, 0 deletions
diff --git a/Lib/modulefinder.py b/Lib/modulefinder.py index 7418a9ce6..4996d7a 100644 --- a/Lib/modulefinder.py +++ b/Lib/modulefinder.py @@ -2,6 +2,7 @@ import dis import imp +import importlib.machinery import marshal import os import sys diff --git a/Lib/test/test_modulefinder.py b/Lib/test/test_modulefinder.py index c5fc320..53ea232 100644 --- a/Lib/test/test_modulefinder.py +++ b/Lib/test/test_modulefinder.py @@ -196,6 +196,18 @@ a/module.py from . import bar """] +relative_import_test_4 = [ + "a.module", + ["a", "a.module"], + [], + [], + """\ +a/__init__.py + def foo(): pass +a/module.py + from . import * +"""] + def open_file(path): dirname = os.path.dirname(path) @@ -273,6 +285,9 @@ class ModuleFinderTest(unittest.TestCase): def test_relative_imports_3(self): self._do_test(relative_import_test_3) + def test_relative_imports_4(self): + self._do_test(relative_import_test_4) + def test_main(): support.run_unittest(ModuleFinderTest) |