[Python-checkins] CVS: python/dist/src/Misc NEWS,1.271,1.272

Tim Peters tim_one@users.sourceforge.net
Sat, 06 Oct 2001 20:12:11 -0700


Update of /cvsroot/python/python/dist/src/Misc
In directory usw-pr-cvs1:/tmp/cvs-serv28021/python/Misc

Modified Files:
	NEWS 
Log Message:
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.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.271
retrieving revision 1.272
diff -C2 -d -r1.271 -r1.272
*** NEWS	2001/10/04 22:46:41	1.271
--- NEWS	2001/10/07 03:12:08	1.272
***************
*** 39,42 ****
--- 39,51 ----
    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.