[Python-checkins] CVS: python/dist/src/Lib pstats.py,1.14,1.15

Eric S. Raymond esr@users.sourceforge.net
Sat, 14 Apr 2001 08:16:07 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv22920

Modified Files:
	pstats.py 
Log Message:
Should resolve [ #416039 ] pstats browser crashes.


Index: pstats.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/pstats.py,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -r1.14 -r1.15
*** pstats.py	2001/04/14 01:48:41	1.14
--- pstats.py	2001/04/14 15:16:05	1.15
***************
*** 577,586 ****
  
          def do_callees(self, line):
!             return self.generic('callees', line)
          def help_callees(self):
              print "Print callees statistics from the current stat object."
  
          def do_callers(self, line):
!             return self.generic('callers', line)
          def help_callers(self):
              print "Print callers statistics from the current stat object."
--- 577,586 ----
  
          def do_callees(self, line):
!             return self.generic('print_callees', line)
          def help_callees(self):
              print "Print callees statistics from the current stat object."
  
          def do_callers(self, line):
!             return self.generic('print_callers', line)
          def help_callers(self):
              print "Print callers statistics from the current stat object."
***************
*** 631,635 ****
  
          def do_strip(self, line):
!             self.stats.strip_order()
              return 0
          def help_strip(self):
--- 631,635 ----
  
          def do_strip(self, line):
!             self.stats.strip_dirs()
              return 0
          def help_strip(self):