summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorHye-Shik Chang <hyeshik@gmail.com>2003-12-15 18:51:19 (GMT)
committerHye-Shik Chang <hyeshik@gmail.com>2003-12-15 18:51:19 (GMT)
commit060ebedc406c657ab1acfd99f2eea18ec7e76c46 (patch)
treead451434c4bd69520b21e0f6454947a162fbc78b /Misc
parent3ae811b57d227a220f207869487fd9251e278608 (diff)
downloadcpython-060ebedc406c657ab1acfd99f2eea18ec7e76c46.zip
cpython-060ebedc406c657ab1acfd99f2eea18ec7e76c46.tar.gz
cpython-060ebedc406c657ab1acfd99f2eea18ec7e76c46.tar.bz2
Add an entry for addition of {str,unicode}.rsplit.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9d5b144..4675e5f 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
-----------------