]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Should resolve [ #416039 ] pstats browser crashes.
authorEric S. Raymond <esr@thyrsus.com>
Sat, 14 Apr 2001 15:16:05 +0000 (15:16 +0000)
committerEric S. Raymond <esr@thyrsus.com>
Sat, 14 Apr 2001 15:16:05 +0000 (15:16 +0000)
Lib/pstats.py

index ac8cd3a74d59ec199dba44e575a4cc18467c4ae2..da3aeb76e5e670edec75c3706143575d06e106a3 100644 (file)
@@ -576,12 +576,12 @@ if __name__ == '__main__':
             print "Add profile info from given file to current stastics object."
 
         def do_callees(self, line):
-            return self.generic('callees', 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('callers', line)
+            return self.generic('print_callers', line)
         def help_callers(self):
             print "Print callers statistics from the current stat object."
 
@@ -630,7 +630,7 @@ if __name__ == '__main__':
             print "Print statistics from the current stat object."
 
         def do_strip(self, line):
-            self.stats.strip_order()
+            self.stats.strip_dirs()
             return 0
         def help_strip(self):
             print "Strip leading path information from filenames in the report."