Ticket #1128 (new defect)

Opened 4 months ago

dabo breaks python help()

Reported by: carl Assigned to: somebody
Priority: minor Milestone: 0.8.3
Component: ui Version: 0.8.2
Keywords: Cc:

Description

install dabo, run python, type help() modules get error and dumped out of help.

help()

Welcome to Python 2.5! This is the online help utility.

If this is your first time using Python, you should definitely check out the tutorial on the Internet at http://www.python.org/doc/tut/.

Enter the name of any module, keyword, or topic to get help on writing Python programs and using Python modules. To quit this help utility and return to the interpreter, just type "quit".

To get a list of available modules, keywords, or topics, type "modules", "keywords", or "topics". Each module also comes with a one-line summary of what it does; to list the modules whose summaries contain a given word such as "spam", type "modules spam".

help> modules

Please wait a moment while I gather a list of all available modules...

Traceback (most recent call last):

File "<stdin>", line 1, in <module> File "/usr/lib/python2.5/site.py", line 351, in call

return pydoc.help(*args, **kwds)

File "/usr/lib/python2.5/pydoc.py", line 1649, in call

self.interact()

File "/usr/lib/python2.5/pydoc.py", line 1667, in interact

self.help(request)

File "/usr/lib/python2.5/pydoc.py", line 1683, in help

elif request == 'modules': self.listmodules()

File "/usr/lib/python2.5/pydoc.py", line 1804, in listmodules

ModuleScanner?().run(callback)

File "/usr/lib/python2.5/pydoc.py", line 1855, in run

for importer, modname, ispkg in pkgutil.walk_packages():

File "/usr/lib/python2.5/pkgutil.py", line 125, in walk_packages

for item in walk_packages(path, name+'.', onerror):

File "/usr/lib/python2.5/pkgutil.py", line 125, in walk_packages

for item in walk_packages(path, name+'.', onerror):

File "/usr/lib/python2.5/pkgutil.py", line 110, in walk_packages

import(name)

File "/usr/lib/python2.5/site-packages/Dabo-0.8.3-py2.5.egg/dabo/ui/dialogs/init.py", line 2, in <module>

from about import About

File "/usr/lib/python2.5/site-packages/Dabo-0.8.3-py2.5.egg/dabo/ui/dialogs/about.py", line 9, in <module>

class About(dabo.ui.dDialog):

AttributeError?: 'module' object has no attribute 'dDialog'