summaryrefslogtreecommitdiffstats
path: root/Lib/bdb.py
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2001-02-09 05:07:04 (GMT)
committerEric S. Raymond <esr@thyrsus.com>2001-02-09 05:07:04 (GMT)
commitb49f4a4b15228799aad77ba569971a23d21cc4f7 (patch)
treefca74bb59fa56fde8e2a23f209b41157172977d9 /Lib/bdb.py
parent20e4423adef209d2260fd952533dc2360e2d257e (diff)
downloadcpython-b49f4a4b15228799aad77ba569971a23d21cc4f7.zip
cpython-b49f4a4b15228799aad77ba569971a23d21cc4f7.tar.gz
cpython-b49f4a4b15228799aad77ba569971a23d21cc4f7.tar.bz2
String method conversion.
Diffstat (limited to 'Lib/bdb.py')
-rw-r--r--Lib/bdb.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/Lib/bdb.py b/Lib/bdb.py
index a0bf9b7..5cfb5ef 100644
--- a/Lib/bdb.py
+++ b/Lib/bdb.py
@@ -306,7 +306,7 @@ class Bdb:
#
def format_stack_entry(self, frame_lineno, lprefix=': '):
- import linecache, repr, string
+ import linecache, repr
frame, lineno = frame_lineno
filename = self.canonic(frame.f_code.co_filename)
s = filename + '(' + `lineno` + ')'
@@ -327,7 +327,7 @@ class Bdb:
s = s + '->'
s = s + repr.repr(rv)
line = linecache.getline(filename, lineno)
- if line: s = s + lprefix + string.strip(line)
+ if line: s = s + lprefix + line.strip()
return s
# The following two methods can be called by clients to use
@@ -534,12 +534,12 @@ class Tdb(Bdb):
if not name: name = '???'
print '+++ call', name, args
def user_line(self, frame):
- import linecache, string
+ import linecache
name = frame.f_code.co_name
if not name: name = '???'
fn = self.canonic(frame.f_code.co_filename)
line = linecache.getline(fn, frame.f_lineno)
- print '+++', fn, frame.f_lineno, name, ':', string.strip(line)
+ print '+++', fn, frame.f_lineno, name, ':', line.strip()
def user_return(self, frame, retval):
print '+++ return', retval
def user_exception(self, frame, exc_stuff):
@@ -558,3 +558,5 @@ def bar(a):
def test():
t = Tdb()
t.run('import bdb; bdb.foo(10)')
+
+# end