diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-09-05 02:36:20 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-09-05 02:36:20 (GMT) |
commit | d34e4272e0e82dcbf21fc6378c393bca7db0dfd7 (patch) | |
tree | e0f57a2917cd6cd5fe3e2b2a5a2846926d39d5d2 | |
parent | 919d5cc16328e692680c3de3493dd1afb24a8acf (diff) | |
download | cpython-d34e4272e0e82dcbf21fc6378c393bca7db0dfd7.zip cpython-d34e4272e0e82dcbf21fc6378c393bca7db0dfd7.tar.gz cpython-d34e4272e0e82dcbf21fc6378c393bca7db0dfd7.tar.bz2 |
Add a NEWS entry for str.rpartition() change
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 ------- |