code-hinting

Displaying function documentation in PyDev

若如初见. 提交于 2019-11-30 08:12:23
I've gotten Pydev up and running, and almost all is working well. However I'm having some trouble with docstrings. Let's say for instance I have a function such as the following: def _get_logging_statement(self): """Returns an easy to read string which separates items in the log file cleanly""" result = "\n\n#=============================================" result += "\n# %-80s#"(self) result =+ "\n\n#============================================" return result Assume I've overridden repr to format that string properly as well. When I hover over this in Eclipse it shows me the full docstring as