summaryrefslogtreecommitdiffstats
path: root/Lib/pdb.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-05-05 09:11:31 (GMT)
committerGeorg Brandl <georg@python.org>2009-05-05 09:11:31 (GMT)
commit3078df0a2535d508aaaa0a556d777dd0acbcd629 (patch)
tree37f861dab8215f11d353fb31f6a22f5d36a9aa61 /Lib/pdb.py
parent243ad66ba63f6af19ca941add4b5a29eae109f31 (diff)
downloadcpython-3078df0a2535d508aaaa0a556d777dd0acbcd629.zip
cpython-3078df0a2535d508aaaa0a556d777dd0acbcd629.tar.gz
cpython-3078df0a2535d508aaaa0a556d777dd0acbcd629.tar.bz2
Merged revisions 72324 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r72324 | georg.brandl | 2009-05-05 11:06:02 +0200 (Di, 05 Mai 2009) | 1 line Fix overlong lines. ........
Diffstat (limited to 'Lib/pdb.py')
-rwxr-xr-xLib/pdb.py38
1 files changed, 24 insertions, 14 deletions
diff --git a/Lib/pdb.py b/Lib/pdb.py
index c9c66c5..23bc6df 100755
--- a/Lib/pdb.py
+++ b/Lib/pdb.py
@@ -158,10 +158,14 @@ class Pdb(bdb.Bdb, cmd.Cmd):
self.interaction(frame, None)
def bp_commands(self,frame):
- """ Call every command that was set for the current active breakpoint (if there is one)
- Returns True if the normal interaction function must be called, False otherwise """
- #self.currentbp is set in bdb.py in bdb.break_here if a breakpoint was hit
- if getattr(self,"currentbp",False) and self.currentbp in self.commands:
+ """Call every command that was set for the current active breakpoint
+ (if there is one).
+
+ Returns True if the normal interaction function must be called,
+ False otherwise."""
+ # self.currentbp is set in bdb in Bdb.break_here if a breakpoint was hit
+ if getattr(self, "currentbp", False) and \
+ self.currentbp in self.commands:
currentbp = self.currentbp
self.currentbp = 0
lastcmd_back = self.lastcmd
@@ -287,7 +291,8 @@ class Pdb(bdb.Bdb, cmd.Cmd):
func = getattr(self, 'do_' + cmd)
except AttributeError:
func = self.default
- if func.__name__ in self.commands_resuming : # one of the resuming commands.
+ # one of the resuming commands
+ if func.__name__ in self.commands_resuming:
self.commands_doprompt[self.commands_bnum] = False
self.cmdqueue = []
return 1
@@ -300,15 +305,18 @@ class Pdb(bdb.Bdb, cmd.Cmd):
do_h = cmd.Cmd.do_help
def do_commands(self, arg):
- """Defines a list of commands associated to a breakpoint
- Those commands will be executed whenever the breakpoint causes the program to stop execution."""
+ """Defines a list of commands associated to a breakpoint.
+
+ Those commands will be executed whenever the breakpoint causes
+ the program to stop execution."""
if not arg:
bnum = len(bdb.Breakpoint.bpbynumber)-1
else:
try:
bnum = int(arg)
except:
- print("Usage : commands [bnum]\n ...\n end", file=self.stdout)
+ print("Usage : commands [bnum]\n ...\n end",
+ file=self.stdout)
return
self.commands_bnum = bnum
self.commands[bnum] = []
@@ -646,8 +654,8 @@ class Pdb(bdb.Bdb, cmd.Cmd):
do_n = do_next
def do_run(self, arg):
- """Restart program by raising an exception to be caught in the main debugger
- loop. If arguments were given, set them in sys.argv."""
+ """Restart program by raising an exception to be caught in the main
+ debugger loop. If arguments were given, set them in sys.argv."""
if arg:
import shlex
argv0 = sys.argv[0:1]
@@ -785,7 +793,8 @@ class Pdb(bdb.Bdb, cmd.Cmd):
breaklist = self.get_file_breaks(filename)
try:
for lineno in range(first, last+1):
- line = linecache.getline(filename, lineno, self.curframe.f_globals)
+ line = linecache.getline(filename, lineno,
+ self.curframe.f_globals)
if not line:
print('[EOF]', file=self.stdout)
break
@@ -1279,8 +1288,8 @@ def main():
# Note on saving/restoring sys.argv: it's a good idea when sys.argv was
# modified by the script being debugged. It's a bad idea when it was
- # changed by the user from the command line. There is a "restart" command which
- # allows explicit specification of command line arguments.
+ # changed by the user from the command line. There is a "restart" command
+ # which allows explicit specification of command line arguments.
pdb = Pdb()
while 1:
try:
@@ -1301,7 +1310,8 @@ def main():
print("Running 'cont' or 'step' will restart the program")
t = sys.exc_info()[2]
pdb.interaction(None, t)
- print("Post mortem debugger finished. The "+mainpyfile+" will be restarted")
+ print("Post mortem debugger finished. The " + mainpyfile +
+ " will be restarted")
# When invoked as main program, invoke the debugger on a script