Lines Matching defs:help
4 At the Python interactive prompt, calling help(thing) on a Python object
5 documents the object, and calling help() starts up an interactive
6 help session.
40 __all__ = ['help']
1746 Use help() to get the interactive help utility.
1747 Use help(str) for help on the str class.''' % thing)
2002 self.help(request)
2009 You are now leaving help and returning to the Python interpreter.
2010 If you want to ask for help on a particular object directly from the
2011 interpreter, you can type "help(object)". Executing "help('string')"
2012 has the same effect as typing a particular string at the help> prompt.
2019 request = self.getline('help> ')
2031 if request == 'help':
2034 self.help(request)
2045 def help(self, request):
2068 Welcome to Python {0}'s help utility!
2073 Enter the name of any module, keyword, or topic to get help on writing
2074 Python programs and using Python modules. To quit this help utility and
2098 Here is a list of the Python keywords. Enter any keyword to get more help.
2106 to. Enter any symbol to get more help.
2113 Here is a list of available topics. Enter any topic name to get more help.
2145 text = 'Related help topics: ' + ', '.join(xrefs.split()) + '\n'
2186 If there are any, enter a module name to get more help.
2206 Enter any module name to get more help. Or, type "modules spam" to search
2210 help = Helper()
2581 """Topic or keyword help page."""
2601 xrefs = html.section('Related help topics: ', 'index', xrefs)
2801 help.help(arg)