commit | afa0d58a2d55fa157482e2006028688db6553f90 | [log] [tgz] |
---|---|---|
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | Mon Sep 01 20:05:08 2008 +0000 |
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | Mon Sep 01 20:05:08 2008 +0000 |
tree | ec5c92dab493ce55e8fcd2099428b5089387127e | |
parent | 50b1c4920be53f5155fce046617bb700fd02574f [diff] [blame] |
Issue #3751: str.rpartition would perform a left-partition when called with a unicode argument. Backport of r66119
diff --git a/Misc/NEWS b/Misc/NEWS index d2d58a5..0f00535 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -12,6 +12,9 @@ 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.