GEEK: Display method descriptions for all the methods in a Python module
Type the following in the python interpreter:
help()
modules
[name of module]
You should see a list of the methods in the module with their descriptions.
Original: craschworks - comments