From: Hye-Shik Chang Date: Mon, 15 Dec 2003 18:51:19 +0000 (+0000) Subject: Add an entry for addition of {str,unicode}.rsplit. X-Git-Tag: v2.4a1~1087 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=060ebedc406c657ab1acfd99f2eea18ec7e76c46;p=thirdparty%2FPython%2Fcpython.git Add an entry for addition of {str,unicode}.rsplit. --- diff --git a/Misc/NEWS b/Misc/NEWS index 9d5b14450440..4675e5f709d4 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -114,6 +114,10 @@ Core and builtins When comparing containers with cyclic references to themselves it will now just hit the recursion limit. See SF patch 825639. +- str and unicode builtin types now have s.rsplit() method that is + same as s.split() except that it scans the string from the end + working forward. See SF feature request 801847. + Extension modules -----------------