diff options
author | Raymond Hettinger <python@rcn.com> | 2004-12-05 03:28:00 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-12-05 03:28:00 (GMT) |
commit | 6c92d76abc730ca7a77da3c7a8627192f7ac3add (patch) | |
tree | eb9204ebcf1f3c2640e292c0d04c3ea7ef98e061 /Lib/pstats.py | |
parent | f3fa9460dee3a11f862bd43fb7e4a70e994363e6 (diff) | |
download | cpython-6c92d76abc730ca7a77da3c7a8627192f7ac3add.zip cpython-6c92d76abc730ca7a77da3c7a8627192f7ac3add.tar.gz cpython-6c92d76abc730ca7a77da3c7a8627192f7ac3add.tar.bz2 |
Removed deprecated method from pstats.
Diffstat (limited to 'Lib/pstats.py')
-rw-r--r-- | Lib/pstats.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/pstats.py b/Lib/pstats.py index 5979a61..98f351f 100644 --- a/Lib/pstats.py +++ b/Lib/pstats.py @@ -416,10 +416,6 @@ class Stats: print f8(ct/cc), print func_std_string(func) - def ignore(self): - # Deprecated since 1.5.1 -- see the docs. - pass # has no return value, so use at end of line :-) - class TupleComp: """This class provides a generic function for comparing any two tuples. Each instance records a list of tuple-indices (from most significant |