summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-09-01 20:05:08 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-09-01 20:05:08 (GMT)
commitafa0d58a2d55fa157482e2006028688db6553f90 (patch)
treeec5c92dab493ce55e8fcd2099428b5089387127e /Misc
parent50b1c4920be53f5155fce046617bb700fd02574f (diff)
downloadcpython-afa0d58a2d55fa157482e2006028688db6553f90.zip
cpython-afa0d58a2d55fa157482e2006028688db6553f90.tar.gz
cpython-afa0d58a2d55fa157482e2006028688db6553f90.tar.bz2
Issue #3751: str.rpartition would perform a left-partition when called with
a unicode argument. Backport of r66119
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d2d58a5..0f00535 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.5.3?
Core and builtins
-----------------
+- Issue #3751: str.rpartition would perform a left-partition when called with
+ a unicode argument.
+
- Issue #3537: Fix an assertion failure when an empty but presized dict
object was stored in the freelist.