summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS9
1 files changed, 9 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0e312c1..30f7df6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.