]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Clarify that the strip changes also apply to Unicode.
authorGuido van Rossum <guido@python.org>
Fri, 26 Apr 2002 20:11:29 +0000 (20:11 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 26 Apr 2002 20:11:29 +0000 (20:11 +0000)
Misc/NEWS

index d83d7b29f8790fb500b57913f557c46dc1f21a20..5f7e942ea75e36a8f1a5e87f8991eca116b4563d 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -22,9 +22,9 @@ Core and builtins
   these make no sense.  Since this was documented, they're being
   deprecated now.
 
-- String methods lstrip(), rstrip() and strip() now take an optional
-  argument that specifies the characters to strip.  For example,
-  "Foo!!!?!?!?".rstrip("?!") -> "Foo".
+- String and unicode methods lstrip(), rstrip() and strip() now take
+  an optional argument that specifies the characters to strip.  For
+  example, "Foo!!!?!?!?".rstrip("?!") -> "Foo".
 
 - Added a new dict method pop(key).  This removes and returns the
   value corresponding to key.  [SF patch #539949]