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

Lines Matching refs:stdout

61     def __init__(self, completekey='tab', stdin=None, stdout=None, skip=None):
63 cmd.Cmd.__init__(self, completekey, stdin, stdout)
64 if stdout:
147 print >>self.stdout, '--Call--'
189 print >>self.stdout, '--Return--'
202 print >>self.stdout, exc_type_name + ':', _saferepr(exc_value)
227 save_stdout = sys.stdout
232 sys.stdout = self.stdout
236 sys.stdout = save_stdout
244 print >>self.stdout, '***', exc_type_name + ':', v
328 print >>self.stdout, "Usage : commands [bnum]\n ..." \
348 print >>self.stdout, "Num Type Disp Enb Where"
351 bp.bpprint(self.stdout)
370 print >>self.stdout, '*** ', repr(filename),
371 print >>self.stdout, 'not found from sys.path'
379 print >>self.stdout, '*** Bad lineno:', arg
405 print >>self.stdout, '*** The specified object',
406 print >>self.stdout, repr(arg),
407 print >>self.stdout, 'is not a function'
408 print >>self.stdout, 'or was not found along sys.path.'
419 if err: print >>self.stdout, '***', err
422 print >>self.stdout, "Breakpoint %d at %s:%d" % (bp.number,
483 print >>self.stdout, 'End of file'
489 print >>self.stdout, '*** Blank or comment'
499 print >>self.stdout, 'Breakpoint index %r is not a number' % i
503 print >>self.stdout, 'No breakpoint numbered', i
516 print >>self.stdout, 'Breakpoint index %r is not a number' % i
520 print >>self.stdout, 'No breakpoint numbered', i
534 print >>self.stdout, \
544 print >>self.stdout, 'Breakpoint index %r is not valid' % args[0]
549 print >>self.stdout, 'Breakpoint', bpnum,
550 print >>self.stdout, 'is now unconditional.'
559 print >>self.stdout, \
569 print >>self.stdout, 'Breakpoint index %r is not valid' % args[0]
579 print >>self.stdout, reply + ' of breakpoint %d.' % bpnum
581 print >>self.stdout, 'Will stop next time breakpoint',
582 print >>self.stdout, bpnum, 'is reached.'
609 if err: print >>self.stdout, '***', err
616 print >>self.stdout, 'Breakpoint index %r is not a number' % i
620 print >>self.stdout, 'No breakpoint numbered', i
624 print >>self.stdout, '***', err
626 print >>self.stdout, 'Deleted breakpoint', i
636 print >>self.stdout, '*** Oldest frame'
647 print >>self.stdout, '*** Newest frame'
695 print >>self.stdout, "*** You can only jump within the bottom frame"
700 print >>self.stdout, "*** The 'jump' command requires a line number."
709 print >>self.stdout, '*** Jump failed:', e
716 p = Pdb(self.completekey, self.stdin, self.stdout)
718 print >>self.stdout, "ENTERING RECURSIVE DEBUGGER"
720 print >>self.stdout, "LEAVING RECURSIVE DEBUGGER"
733 print >>self.stdout
746 print >>self.stdout, name, '=',
747 if name in dict: print >>self.stdout, dict[name]
748 else: print >>self.stdout, "*** undefined ***"
753 print >>self.stdout, self.curframe_locals['__return__']
755 print >>self.stdout, '*** Not yet returned!'
767 print >>self.stdout, '***', exc_type_name + ':', repr(v)
772 print >>self.stdout, repr(self._getval(arg))
778 pprint.pprint(self._getval(arg), self.stdout)
798 print >>self.stdout, '*** Error in argument:', repr(arg)
813 print >>self.stdout, '[EOF]'
822 print >>self.stdout, s + '\t' + line,
837 print >>self.stdout, '***', exc_type_name + ':', repr(v)
844 print >>self.stdout, 'Function', code.co_name
850 print >>self.stdout, 'Method', code.co_name
853 print >>self.stdout, type(value)
861 print >>self.stdout, "%s = %s" % (alias, self.aliases[alias])
864 print >>self.stdout, "%s = %s" % (args[0], self.aliases[args[0]])
896 print >>self.stdout, '>',
898 print >>self.stdout, ' ',
899 print >>self.stdout, self.format_stack_entry(frame_lineno,
909 print >>self.stdout, """h(elp)
919 print >>self.stdout, """w(here)
930 print >>self.stdout, """d(own)
938 print >>self.stdout, """u(p)
946 print >>self.stdout, """b(reak) ([file:]lineno | function) [, condition]
962 print >>self.stdout, "cl(ear) filename:lineno"
963 print >>self.stdout, """cl(ear) [bpnumber [bpnumber...]]
975 print >>self.stdout, """tbreak same arguments as break, but breakpoint
979 print >>self.stdout, """enable bpnumber [bpnumber ...]
984 print >>self.stdout, """disable bpnumber [bpnumber ...]
989 print >>self.stdout, """ignore bpnumber count
997 print >>self.stdout, """condition bpnumber str_condition
1007 print >>self.stdout, """s(tep)
1023 print >>self.stdout, """n(ext)
1031 print >>self.stdout, """r(eturn)
1041 print >>self.stdout, """c(ont(inue))
1048 print >>self.stdout, """j(ump) lineno
1052 print >>self.stdout, """debug code
1061 print >>self.stdout, """l(ist) [first [,last]]
1073 print >>self.stdout, """a(rgs)
1077 print >>self.stdout, """p expression
1081 print >>self.stdout, """pp expression
1085 print >>self.stdout, """(!) statement
1108 print >>self.stdout, """q(uit) or exit - Quit from the debugger.
1114 print >>self.stdout, """whatis arg
1118 print >>self.stdout, """EOF
1122 print >>self.stdout, """alias [name [command [parameter parameter ...]]]
1146 print >>self.stdout, """unalias name
1150 print >>self.stdout, """commands [bpnumber]