pstats
 

# Class for printing reports on profiled python code. rev 1.0  4/1/94
#
# Based on prior profile module by Sjoerd Mullender...
#   which was hacked somewhat by: Guido van Rossum
#
# see profile.doc and profile.py for more info.


 Modules
                                                                                                                                                                                                                               
fpformat
marshal
os
re
string
time


 Classes
                                                                                                                                                                                                                               
Stats
TupleComp


 class Stats
           no doc string
                                                                                                                                                                                                                     
__init__(self, *args)
no doc string
add(self, *arg_list)
no doc string
calc_callees(self)
no doc string
eval_print_amount(self, sel, list, msg)
# Optional "amount" is either a line count, or a percentage of lines.
get_print_list(self, sel_list)
no doc string
get_sort_arg_defs(self)
# Expand all abbreviations that are unique
get_top_level_stats(self)
no doc string
ignore(self)
no doc string
init(self, arg)
no doc string
load_stats(self, arg)
no doc string
print_call_heading(self, name_size, column_title)
no doc string
print_call_line(self, name_size, source, call_dict)
no doc string
print_callees(self, *amount)
no doc string
print_callers(self, *amount)
no doc string
print_line(self, func)
no doc string
print_stats(self, *amount)
no doc string
print_title(self)
no doc string
reverse_order(self)
no doc string
sort_stats(self, *field)
no doc string
strip_dirs(self)
no doc string


 class TupleComp
           #**************************************************************************
# class TupleComp Documentation
#**************************************************************************
# This class provides a generic function for comparing any two tuples.
# Each instance records a list of tuple-indicies (from most significant
# to least significant), and sort direction (ascending or decending) for
# each tuple-index.  The compare functions can then be used as the function
# argument to the system sort() function when a list of tuples need to be
# sorted in the instances order. #**************************************************************************
 
                                                                                                                                                                                                                     
__init__(self, comp_select_list)
no doc string
compare(self, left, right)
no doc string


 Functions
                                                                                                                                                                                                                               
add_callers(target, source)
no doc string
add_func_stats(target, source)
no doc string
count_calls(callers)
no doc string
f8(x)
#**************************************************************************
# The following functions support printing of reports #**************************************************************************
func_get_function_name(func)
no doc string
func_split(func_name)
no doc string
func_std_string(func_name)
no doc string
func_strip_path(func_name)
#**************************************************************************