help(help)
says This is a wrapper around pydoc.help (with a twist).
What is the twist?
$ python
Python 2.7.10 (default, Jul 30 2016, 19:40:32)
[GCC 4.2.1 Compatible Apple LLVM 8.0.0 (clang-800.0.34)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> help(help)
Help on _Helper in module site object:
class _Helper(__builtin__.object)
| Define the builtin 'help'.
| This is a wrapper around pydoc.help (with a twist).
|
| Methods defined here:
|
| __call__(self, *args, **kwds)
|
| __repr__(self)
|
| ----------------------------------------------------------------------
| Data descriptors defined here:
|
| __dict__
| dictionary for instance variables (if defined)
|
| __weakref__
| list of weak references to the object (if defined)
There isn't much of a twist. The twist is that
pydoc
is lazily imported and the object has a__repr__
method that provides direct feedback on how to use the object:The
__repr__
method is called whenever you echo thehelp
object in the interactive prompt:Python 3.4 got rid of the 'twist' description altogether, replacing it with something a little more descriptive; see issue 9364. Quoting the bug reporter:
followed by a developer's response:
The docstring now reads: