[Python-checkins] r51725 - python/trunk/Misc/NEWS

neal.norwitz python-checkins at python.org
Tue Sep 5 04:36:20 CEST 2006


Author: neal.norwitz
Date: Tue Sep  5 04:36:20 2006
New Revision: 51725

Modified:
   python/trunk/Misc/NEWS
Log:
Add a NEWS entry for str.rpartition() change

Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Tue Sep  5 04:36:20 2006
@@ -19,6 +19,9 @@
 
 - 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
 -------


More information about the Python-checkins mailing list