diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-09-01 20:05:08 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-09-01 20:05:08 (GMT) |
commit | afa0d58a2d55fa157482e2006028688db6553f90 (patch) | |
tree | ec5c92dab493ce55e8fcd2099428b5089387127e /Misc | |
parent | 50b1c4920be53f5155fce046617bb700fd02574f (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |