diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-10-07 03:12:08 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-10-07 03:12:08 (GMT) |
commit | 0a1fc4e389b9839f2330083fb20e7a466835422f (patch) | |
tree | 980ed019a1eda421af42d827430f9454ec40ad83 /Misc | |
parent | 6d483d3477c37d7dfe3113ef6fd02ba02c78fde6 (diff) | |
download | cpython-0a1fc4e389b9839f2330083fb20e7a466835422f.zip cpython-0a1fc4e389b9839f2330083fb20e7a466835422f.tar.gz cpython-0a1fc4e389b9839f2330083fb20e7a466835422f.tar.bz2 |
Remove code and docs for the OldProfile and HotProfile classes: code
hasn't worked in years, docs were wrong, and they aren't interesting
anymore regardless.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -38,6 +38,15 @@ Library to cause wrong output, including spurious claims of recursive functions and attribution of time spent to the wrong function. + The code and documentation for the derived OldProfile and HotProfile + profiling classes was removed. The code hasn't worked for years (if + you tried to use them, they raised exceptions). OldProfile + intended to reproduce the behavior of the profiler Python used more + than 7 years ago, and isn't interesting anymore. HotProfile intended + to provide a faster profiler (but producing less information), and + that's a worthy goal we intend to meet via a different approach (but + without losing information). + - quopri's encode and decode methods take an optional header parameter, which indicates whether output is intended for the header 'Q' encoding. |