Lines Matching defs:help
26 that 'help' can be typed as 'h' or 'help' (but not as 'he' or 'hel',
43 have parameters (see the alias help entry) which allows one a certain
95 "post_mortem", "help"]
1553 # Provide help
1558 With a command name as argument, print help about that command.
1559 "help pdb" shows the full pdb documentation.
1560 "help exec" gives help on the ! command.
1571 self.error('No help for %r' % arg)
1574 self.error('No help for %r; please do not run Python with -OO '
1575 'if you need command help' % arg)
1578 self.error('No help for %r; __doc__ string missing' % arg)
1597 help()
1656 # Collect all command help into docstring, if not run with -OO
1661 'help', 'where', 'down', 'up', 'break', 'tbreak', 'clear', 'disable',
1723 # print help
1724 def help():
1747 opts, args = getopt.getopt(sys.argv[1:], 'mhc:', ['help', 'command='])
1753 if any(opt in ['-h', '--help'] for opt, optarg in opts):