[Python-checkins] python/dist/src/Misc NEWS,1.337.2.4.2.72,1.337.2.4.2.73

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Fri, 11 Apr 2003 11:21:46 -0700


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

Modified Files:
      Tag: release22-maint
	NEWS 
Log Message:
Backport:
Fix SF bug #697220, string.strip implementation/doc mismatch

Attempt to make all the various string/unicode *strip methods the same.
 * Doc - add doc for when functions were added
 * UserString
 * string/unicode object methods
 * string module functions
'chars' is used for the last parameter everywhere.



Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.337.2.4.2.72
retrieving revision 1.337.2.4.2.73
diff -C2 -d -r1.337.2.4.2.72 -r1.337.2.4.2.73
*** NEWS	8 Apr 2003 20:32:58 -0000	1.337.2.4.2.72
--- NEWS	11 Apr 2003 18:21:03 -0000	1.337.2.4.2.73
***************
*** 3,6 ****
--- 3,11 ----
  ============================
  
+ - Make all the strip, lstrip, rstrip functions/methods on
+   string/unicode/UserString consistent by adding and/or
+   documenting the chars parameter.  The chars parameter
+   specifies which characters to strip.
+ 
  - Some horridly obscure problems were fixed involving interaction
    between garbage collection and classes with "ambitious" getattr hooks.