summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2003-06-17 05:05:49 (GMT)
committerRaymond Hettinger <python@rcn.com>2003-06-17 05:05:49 (GMT)
commitd05abdec7b2620449369bb44a617684463ba50ac (patch)
treecb20408dd9bf2d158586d3187e22438b4427288e /Misc
parentc8106e1f1dbd00e64aff6ecc5ecb53010168dd27 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0ee2046..b8b9a9b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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).