Home | History | Annotate | Download | only in python2.7

Lines Matching refs:Cmd

9 import cmd
59 class Pdb(bdb.Bdb, cmd.Cmd):
63 cmd.Cmd.__init__(self, completekey, stdin, stdout)
99 # must be disp. after execing the cmd list
101 # must be disp. after execing the cmd list
279 return cmd.Cmd.onecmd(self, line)
285 cmd, arg, line = self.parseline(line)
286 if not cmd:
288 if cmd == 'silent':
290 return # continue to handle other cmd def in the cmd list
291 elif cmd == 'end':
293 return 1 # end of cmd list
296 cmdlist.append(cmd+' '+arg)
298 cmdlist.append(cmd)
301 func = getattr(self, 'do_' + cmd)
315 do_h = cmd.Cmd.do_help