iPython , ein interaktiver Python-Shell-Ersatz (sprich: eine Erweiterung), enthält die ??
Operator, mit dem Sie die pydoc-Informationen bequem ausdrucken können.
Zum Beispiel:
In [5]: eval??
Type: builtin_function_or_method
Base Class: <type 'builtin_function_or_method'>
String Form: <built-in function eval>
Namespace: Python builtin
Docstring [source file open failed]:
eval(source[, globals[, locals]]) -> value
Evaluate the source in the context of globals and locals.
The source may be a string representing a Python expression
or a code object as returned by compile().
The globals must be a dictionary and locals can be any mapping,
defaulting to the current globals and locals.
If only globals is given, locals defaults to it.
Könnte nicht sein genau was Sie suchen, aber es ist eine großartige Möglichkeit, mit den Dokumentationen von Python zu interagieren.