diff options
author | Guido van Rossum <guido@python.org> | 1994-11-10 22:27:35 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-11-10 22:27:35 (GMT) |
commit | a558e37eb4a17540cc6277c4cd571e88d6e60b9d (patch) | |
tree | c1259befcf4840ac47eb6b4a93dee31f7de50541 /Lib/bdb.py | |
parent | e23b62f28854a9f12412b34a5b971297ad3caf6d (diff) | |
download | cpython-a558e37eb4a17540cc6277c4cd571e88d6e60b9d.zip cpython-a558e37eb4a17540cc6277c4cd571e88d6e60b9d.tar.gz cpython-a558e37eb4a17540cc6277c4cd571e88d6e60b9d.tar.bz2 |
improved prompt format
Diffstat (limited to 'Lib/bdb.py')
-rw-r--r-- | Lib/bdb.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -242,7 +242,7 @@ class Bdb: # Basic Debugger # - def format_stack_entry(self, frame_lineno): + def format_stack_entry(self, frame_lineno, lprefix=': '): import linecache, repr, string frame, lineno = frame_lineno filename = frame.f_code.co_filename @@ -260,7 +260,7 @@ class Bdb: # Basic Debugger s = s + '->' s = s + repr.repr(rv) line = linecache.getline(filename, lineno) - if line: s = s + ': ' + string.strip(line) + if line: s = s + lprefix + string.strip(line) return s # The following two methods can be called by clients to use |