[Python-checkins] CVS: python/dist/src/Lib pstats.py,1.15,1.15.2.1
Anthony Baxter
anthonybaxter@users.sourceforge.net
2001年12月04日 21:54:26 -0800
Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv22018
Modified Files:
Tag: release21-maint
pstats.py
Log Message:
backport 1.18: Patch #416220: Fix misplaced paren.
Index: pstats.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/pstats.py,v
retrieving revision 1.15
retrieving revision 1.15.2.1
diff -C2 -d -r1.15 -r1.15.2.1
*** pstats.py 2001年04月14日 15:16:05 1.15
--- pstats.py 2001年12月05日 05:54:24 1.15.2.1
***************
*** 605,609 ****
return
self.prompt = line + "% "
! elif len(self.prompt > 2):
line = self.prompt[-2:]
else:
--- 605,609 ----
return
self.prompt = line + "% "
! elif len(self.prompt) > 2:
line = self.prompt[-2:]
else: