0

当我尝试运行 python->help()->modules 我得到这个:

% python
Python 2.7.1 (r271:86832, Apr 13 2012, 11:08:33) [C] on sunos5

>>> help()

help> modules

Please wait a moment while I gather a list of all available modules...
file ghash.c: line 875: assertion `hash_table->ref_count > 0' failedfile ghash.c: line 875: assertion `hash_table->ref_count > 0' failed
Segmentation Fault

就这样,它下去了。我的问题是为什么?我该如何解决?

我可以在代码中很好地访问模块,只是无法从帮助菜单中调出列表。help 中的其他标签也可以正常工作。就是这个破了

4

1 回答 1

3

运行python -vv并重复您的步骤。查看哪些模块无法导入。

或安装faulthandler. 启用它并重复您的步骤。

于 2012-07-10T19:13:02.187 回答