diff options
author | Raymond Hettinger <python@rcn.com> | 2003-06-17 05:05:49 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-06-17 05:05:49 (GMT) |
commit | d05abdec7b2620449369bb44a617684463ba50ac (patch) | |
tree | cb20408dd9bf2d158586d3187e22438b4427288e /Misc | |
parent | c8106e1f1dbd00e64aff6ecc5ecb53010168dd27 (diff) | |
download | cpython-d05abdec7b2620449369bb44a617684463ba50ac.zip cpython-d05abdec7b2620449369bb44a617684463ba50ac.tar.gz cpython-d05abdec7b2620449369bb44a617684463ba50ac.tar.bz2 |
SF #754014: list.index() should accept optional start, end arguments
Also, modified UserList.index() to match and expanded the related tests.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -12,6 +12,9 @@ What's New in Python 2.3 beta 2? Core and builtins ----------------- +- list.index() now accepts optional start and stop arguments. Similar + changes were made to UserList.index(). SF feature request 754014. + - SF patch 751998 fixes an unwanted side effect of the previous fix for SF bug 742860 (the next item). |