diff options
author | Petri Lehtinen <petri@digip.org> | 2011-11-05 21:18:06 (GMT) |
---|---|---|
committer | Petri Lehtinen <petri@digip.org> | 2011-11-05 21:18:06 (GMT) |
commit | 819d8d447da7e2a8530574af2a7574fdc011b0c2 (patch) | |
tree | 7fd8113792e02e355b4913e82cb4b6cf532504b9 /Misc | |
parent | 972ba9e41f457007570b3de0a54e934881c7281e (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |