Python Help >> Modules Gives Segmentation Fault - How To Fix?
Welcome to Python 2.7! This is the online help utility. ... >> help() help> modules Please wait a moment while I gather a list of all available modules... /usr/lib/pyt
Solution 1:
Unfortunately, this is a known problem when using help
on Python. It currently has to import modules to inspect their docstrings and this may result in crashes if the modules execute code upon import and call third-party libraries that expect a certain execution context or that may just be buggy. Here's an open Ubuntu issue about this specific case. There are a number of open issues in the Python issue tracker about similar crashes due to help
importing.
Post a Comment for "Python Help >> Modules Gives Segmentation Fault - How To Fix?"