Fix SF item #876278: Unbounded recursion in modulefinder.

This commit is contained in:
Thomas Heller
2004-05-11 15:00:07 +00:00
parent 72959cc3f7
commit d6782986c1
2 changed files with 6 additions and 0 deletions

View File

@@ -245,6 +245,9 @@ class ModuleFinder:
if self.badmodules.has_key(fqname):
self.msgout(3, "import_module -> None")
return None
if parent and parent.__path__ is None:
self.msgout(3, "import_module -> None")
return None
try:
fp, pathname, stuff = self.find_module(partname,
parent and parent.__path__, parent)
@@ -392,6 +395,7 @@ class ModuleFinder:
def find_module(self, name, path, parent=None):
if parent is not None:
# assert path is not None
fullname = parent.__name__+'.'+name
else:
fullname = name

View File

@@ -42,6 +42,8 @@ Core and builtins
Library
-------
- Bug #876278: Unbounded recursion in modulefinder
- Brought platform.py in line with the 2.4 version, fixing support for
newer Windows versions and a cache issue.