Add an entry for addition of {str,unicode}.rsplit.

This commit is contained in:
Hye-Shik Chang 2003-12-15 18:51:19 +00:00
parent 3ae811b57d
commit 060ebedc40

View file

@ -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
-----------------