Rename the repr module to reprlib.

Merged revisions 63357 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r63357 | alexandre.vassalotti | 2008-05-16 02:58:49 -0400 (Fri, 16 May 2008) | 2 lines

  Changed references to the reprlib module to use its new name.
........
This commit is contained in:
Alexandre Vassalotti 2008-05-16 07:12:44 +00:00
parent cdc11337a2
commit 1f2ba4b6da
13 changed files with 35 additions and 31 deletions

View file

@ -324,7 +324,7 @@ class Bdb:
#
def format_stack_entry(self, frame_lineno, lprefix=': '):
import linecache, repr
import linecache, reprlib
frame, lineno = frame_lineno
filename = self.canonic(frame.f_code.co_filename)
s = '%s(%r)' % (filename, lineno)
@ -337,13 +337,13 @@ class Bdb:
else:
args = None
if args:
s = s + repr.repr(args)
s = s + reprlib.repr(args)
else:
s = s + '()'
if '__return__' in frame.f_locals:
rv = frame.f_locals['__return__']
s = s + '->'
s = s + repr.repr(rv)
s = s + reprlib.repr(rv)
line = linecache.getline(filename, lineno)
if line: s = s + lprefix + line.strip()
return s