[Python-checkins] python/dist/src/Misc NEWS,1.635,1.636

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Sat, 01 Feb 2003 23:51:34 -0800


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

Modified Files:
	NEWS 
Log Message:
long(string, base) now takes time linear in len(string) when base is a
power of 2.  Enabled the tail end of test_long() in pickletester.py
because it no longer takes forever when run from test_pickle.py.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.635
retrieving revision 1.636
diff -C2 -d -r1.635 -r1.636
*** NEWS	1 Feb 2003 02:54:15 -0000	1.635
--- NEWS	2 Feb 2003 07:51:32 -0000	1.636
***************
*** 13,16 ****
--- 13,19 ----
  -----------------
  
+ - long(string, base) takes time linear in len(string) when base is a power
+   of 2 now.  It used to take time quadratic in len(string).
+ 
  - filter returns now Unicode results for Unicode arguments.