diff options
author | Brett Cannon <brett@python.org> | 2014-02-26 23:26:49 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2014-02-26 23:26:49 (GMT) |
commit | 26dd0ff075bcfcdc6eebe584dce55dfd2f1b1537 (patch) | |
tree | f6f258474b3045c3f05a1b2d59b38a92255a0620 /Lib/importlib | |
parent | d44cebb0f50b7c541691b9516c5c1717d2a510b1 (diff) | |
download | cpython-26dd0ff075bcfcdc6eebe584dce55dfd2f1b1537.zip cpython-26dd0ff075bcfcdc6eebe584dce55dfd2f1b1537.tar.gz cpython-26dd0ff075bcfcdc6eebe584dce55dfd2f1b1537.tar.bz2 |
Issue #20763: Fix importlib.machinery.PathFinder to support
PathEntryFinder instances which only define find_module().
Reported by Yukihiro Nakadaira.
Diffstat (limited to 'Lib/importlib')
-rw-r--r-- | Lib/importlib/_bootstrap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py index 4864024..beaa9b3 100644 --- a/Lib/importlib/_bootstrap.py +++ b/Lib/importlib/_bootstrap.py @@ -1869,7 +1869,7 @@ class PathFinder: loader, portions = finder.find_loader(fullname) else: loader = finder.find_module(fullname) - portions = None + portions = [] if loader is not None: return spec_from_loader(fullname, loader) spec = ModuleSpec(fullname, None) |