Lines Matching defs:in
78 if 'HOME' in os.environ:
85 for line in rcFile.readlines():
93 for line in rcFile.readlines():
102 self.commands_defining = False # True while in the process of defining
134 for line in rcLines:
143 that we ever need to stop in this function."""
166 # self.currentbp is set in bdb in Bdb.break_here if a breakpoint was hit
168 self.currentbp in self.commands:
173 for line in self.commands[currentbp]:
214 """Custom displayhook for the exec in default(), which prevents
215 assignment of the _ variable in the builtins.
234 exec code in globals, locals
251 while args[0] in self.aliases:
254 for tmpArg in args[1:]:
272 """Interpret the argument as though it had been typed in response
275 Checks whether this line is typed at the normal prompt or in
290 return # continue to handle other cmd def in the cmd list
305 if func.func_name in self.commands_resuming:
349 for bp in bdb.Breakpoint.bpbynumber:
354 # and cannot occur in filename
426 # To be overridden in derived debuggers
441 # Input is identifier, may be in single quotes
444 # not in single quotes
495 for i in args:
512 for i in args:
585 """Three possibilities, tried in this order:
595 if reply in ('y', 'yes'):
598 if ':' in arg:
612 for i in numberlist:
672 """Restart program by raising an exception to be caught in the main
673 debugger loop. If arguments were given, set them in sys.argv."""
744 for i in range(n):
747 if name in dict: print >>self.stdout, dict[name]
752 if '__return__' in self.curframe_locals:
798 print >>self.stdout, '*** Error in argument:', repr(arg)
809 for lineno in range(first, last+1):
818 if lineno in breaklist: s = s + 'B'
860 for alias in keys:
863 if args[0] in self.aliases and len(args) == 1:
871 if args[0] in self.aliases:
888 for frame_lineno in self.stack:
931 Move the current frame one level down in the stack trace
939 Move the current frame one level up in the stack trace
947 With a line number argument, set a break there in the current
954 to specify a breakpoint in another file (probably one that
967 clear all breaks at that line in that file.
970 the debugger (in python distributions 1.5.1 and before) where
1009 (either in a function that is called or in the current function)."""
1024 Continue execution until the next line in the current function
1055 in the current environment)."""
1086 Execute the (one-line) statement in the context of
1124 must *not* be enclosed in quotes. Replaceable parameters are
1134 in the line are left alone.
1136 Some useful aliases (especially when placed in the .pdbrc file) are:
1139 alias pi for k in %1.__dict__.keys(): print "%1.",k,"=",%1.__dict__[k]
1141 #Print instance variables in self
1177 If you use the 'silent' command in the command list, the
1203 for dirname in sys.path:
1212 # The script has to run in __main__ namespace (or imports from
1282 for dirname in sys.path:
1293 if not sys.argv[1:] or sys.argv[1] in ("--help", "-h"):
1304 # Replace pdb's dir with script's dir in front of module search path.
1322 # In most cases SystemExit does not warrant a post-mortem session.