summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2011-11-05 21:18:06 (GMT)
committerPetri Lehtinen <petri@digip.org>2011-11-05 21:18:06 (GMT)
commit819d8d447da7e2a8530574af2a7574fdc011b0c2 (patch)
tree7fd8113792e02e355b4913e82cb4b6cf532504b9 /Misc
parent972ba9e41f457007570b3de0a54e934881c7281e (diff)
downloadcpython-819d8d447da7e2a8530574af2a7574fdc011b0c2.zip
cpython-819d8d447da7e2a8530574af2a7574fdc011b0c2.tar.gz
cpython-819d8d447da7e2a8530574af2a7574fdc011b0c2.tar.bz2
Accept None as start and stop parameters for list.index() and tuple.index()
Closes #13340.
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 d053a2b..2f7b54e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -9,6 +9,9 @@ What's New in Python 2.7.3?
Core and Builtins
-----------------
+- Issue #13340: Accept None as start and stop parameters for
+ list.index() and tuple.index().
+
- Issue #10519: Avoid unnecessary recursive function calls in
setobject.c.