commit | 1f68fc7fa5048e0576ff26436012765f4a8fa3d4 | [log] [tgz] |
---|---|---|
author | Neal Norwitz <nnorwitz@gmail.com> | Fri Jun 14 00:50:42 2002 +0000 |
committer | Neal Norwitz <nnorwitz@gmail.com> | Fri Jun 14 00:50:42 2002 +0000 |
tree | 2a6269c89b5d90689c29a3aa94f80db58791d1f0 | |
parent | 585775bf118ea8c3450ceaf1fa849140eabf8bd7 [diff] [blame] |
SF bug # 493951 string.{starts,ends}with vs slices Handle negative indices similar to slices.
diff --git a/Misc/NEWS b/Misc/NEWS index 383614f..4a949f4 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -6,6 +6,9 @@ Core and builtins +- Fixed string.startswith and string.endswith builtin methods + so they accept negative indices. [SF bug 493951] + - Fixed a bug with a continue inside a try block and a yield in the finally clause. [SF bug 567538]