This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author nnorwitz
Recipients nnorwitz
Date 2007-08-25.17:27:40
SpamBayes Score 0.2783957
Marked as misclassified No
Message-id <1188062861.7.0.938537520444.issue1020@psf.upfronthosting.co.za>
In-reply-to
Content
help(pyexpat) causes an exception:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/neal/python/dev/py3k/Lib/site.py", line 350, in __call__
    return pydoc.help(*args, **kwds)
  File "/home/neal/python/dev/py3k/Lib/pydoc.py", line 1685, in __call__
    self.help(request)
  File "/home/neal/python/dev/py3k/Lib/pydoc.py", line 1729, in help
    else: doc(request, 'Help on %s:')
  File "/home/neal/python/dev/py3k/Lib/pydoc.py", line 1512, in doc
    pager(render_doc(thing, title, forceload))
  File "/home/neal/python/dev/py3k/Lib/pydoc.py", line 1490, in 
render_doc
    return title % desc + '\n\n' + text.document(object, name)
  File "/home/neal/python/dev/py3k/Lib/pydoc.py", line 319, in document
    if inspect.ismodule(object): return self.docmodule(*args)
  File "/home/neal/python/dev/py3k/Lib/pydoc.py", line 1076, in 
docmodule
    contents.append(self.document(value, key, name))
  File "/home/neal/python/dev/py3k/Lib/pydoc.py", line 320, in document
    if inspect.isclass(object): return self.docclass(*args)
  File "/home/neal/python/dev/py3k/Lib/pydoc.py", line 1126, in docclass
    mro = deque(inspect.getmro(object))
TypeError: 'NoneType' object is not iterable
History
Date User Action Args
2007-08-25 17:27:42nnorwitzsetspambayes_score: 0.278396 -> 0.2783957
recipients: + nnorwitz
2007-08-25 17:27:41nnorwitzsetspambayes_score: 0.278396 -> 0.278396
messageid: <1188062861.7.0.938537520444.issue1020@psf.upfronthosting.co.za>
2007-08-25 17:27:41nnorwitzlinkissue1020 messages
2007-08-25 17:27:40nnorwitzcreate