MCPcopy Index your code
hub / github.com/RustPython/RustPython / __call__

Method __call__

Lib/_sitebuiltins.py:101–103  ·  view source on GitHub ↗
(self, *args, **kwds)

Source from the content-addressed store, hash-verified

99 return "Type help() for interactive help, " \
100 "or help(object) for help about object."
101 def __call__(self, *args, **kwds):
102 import pydoc
103 return pydoc.help(*args, **kwds)

Callers

nothing calls this directly

Calls 1

helpMethod · 0.45

Tested by

no test coverage detected