PyDev, nor Eclipse, provides on-line help for Python documentation. Unlike Java, Python API source code documentation has several competing documentation standards and their support will be complex.
However, if the function under the cursor can be enabled, its docstring is displayed in a popup.
http://www.python.org/dev/peps/pep-0257/
Also, since Python is a dynamic language, unlike static languages ββsuch as Java, you rarely can enable functions for your source during code development.
Using the Python console debugger, you can use the help () command when starting the application
>>> help(obj.myfuction)
Mikko ohtamaa
source share