From: Neal Norwitz Date: Tue, 5 Sep 2006 02:36:20 +0000 (+0000) Subject: Add a NEWS entry for str.rpartition() change X-Git-Tag: v2.6a1~2708 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d34e4272e0e82dcbf21fc6378c393bca7db0dfd7;p=python Add a NEWS entry for str.rpartition() change --- diff --git a/Misc/NEWS b/Misc/NEWS index d8e6b3c101..eab647e615 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -19,6 +19,9 @@ Core and builtins - Patch #1546288: fix seg fault in dict_equal due to ref counting bug. +- The return tuple from str.rpartition(sep) is (tail, sep, head) where + head is the original string if sep was not found. + Library -------