[issue13027] python 2.6.6 interpreter core dumps on modules command from help prompt

Ezio Melotti report at bugs.python.org
Thu Sep 22 20:46:37 CEST 2011


Ezio Melotti <ezio.melotti at gmail.com> added the comment:

Doing "help('modules')" and "help(), help> modules" should be the same.
My point is that the crash is not Python's fault, but it's caused by some extension module that gets imported by help('modules').  This module is probably not installed on the other machines and on the same machine for other Python versions, so it doesn't crash there.  You can look on sys.path to see the places where Python searches for the modules.

If you manage to identify the module, you could report the problem to their bug tracker.  AFAIK Python can't do anything to prevent/contain a crash while importing an extension module.

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue13027>
_______________________________________


More information about the Python-bugs-list mailing list