[Python-checkins] CVS: python/dist/src/Misc NEWS,1.171,1.172

Guido van Rossum gvanrossum@users.sourceforge.net
Mon, 14 May 2001 19:14:47 -0700


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

Modified Files:
	NEWS 
Log Message:
Add warnings to the strop module, for to those functions that really
*are* obsolete; three variables and the maketrans() function are not
(yet) obsolete.

Add a compensating warnings.filterwarnings() call to test_strop.py.

Add this to the NEWS.



Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.171
retrieving revision 1.172
diff -C2 -r1.171 -r1.172
*** NEWS	2001/05/14 22:32:33	1.171
--- NEWS	2001/05/15 02:14:44	1.172
***************
*** 88,91 ****
--- 88,95 ----
  Library
  
+ - strop is now *really* obsolete (this was announced before with 1.6),
+   and issues DeprecationWarning when used (except for the four items
+   that are still imported into string.py).
+ 
  - Cookie.py now sorts key+value pairs by key in output strings.