summaryrefslogtreecommitdiff
path: root/Lib/pydoc.py
diff options
context:
space:
mode:
authorKa-Ping Yee <ping@zesty.ca>2008-01-13 11:25:13 +0000
committerKa-Ping Yee <ping@zesty.ca>2008-01-13 11:25:13 +0000
commitfe25d0c87c2f60b1c8ede1ac8da20fe7f4924a4b (patch)
tree08b425442881a12690e2e0d5886f358524b758f5 /Lib/pydoc.py
parent81860f223586cee2b31045906038bd76cf556228 (diff)
downloadcpython-fe25d0c87c2f60b1c8ede1ac8da20fe7f4924a4b.tar.gz
Check in the patch proposed by Ben Hayden (benjhayden) for issue
#1550: help('modules') broken by several 3rd party libraries. Tested with Python build: trunk:54235:59936M -- the reported error occurs with Django installed (or with any __init__.py present on the path that raises an exception), and such errors indeed go away when this change is applied.
Diffstat (limited to 'Lib/pydoc.py')
-rwxr-xr-xLib/pydoc.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/Lib/pydoc.py b/Lib/pydoc.py
index f69f73364a..2d32316ead 100755
--- a/Lib/pydoc.py
+++ b/Lib/pydoc.py
@@ -1816,7 +1816,9 @@ Please wait a moment while I gather a list of all available modules...
modname = modname[:-9] + ' (package)'
if find(modname, '.') < 0:
modules[modname] = 1
- ModuleScanner().run(callback)
+ def onerror(modname):
+ callback(None, modname, None)
+ ModuleScanner().run(callback, onerror=onerror)
self.list(modules.keys())
self.output.write('''
Enter any module name to get more help. Or, type "modules spam" to search
@@ -1852,7 +1854,7 @@ class Scanner:
class ModuleScanner:
"""An interruptible scanner that searches module synopses."""
- def run(self, callback, key=None, completer=None):
+ def run(self, callback, key=None, completer=None, onerror=None):
if key: key = lower(key)
self.quit = False
seen = {}
@@ -1867,7 +1869,7 @@ class ModuleScanner:
if find(lower(modname + ' - ' + desc), key) >= 0:
callback(None, modname, desc)
- for importer, modname, ispkg in pkgutil.walk_packages():
+ for importer, modname, ispkg in pkgutil.walk_packages(onerror=onerror):
if self.quit:
break
if key is None: