commit | 819d8d447da7e2a8530574af2a7574fdc011b0c2 | [log] [tgz] |
---|---|---|
author | Petri Lehtinen <petri@digip.org> | Sat Nov 05 23:18:06 2011 +0200 |
committer | Petri Lehtinen <petri@digip.org> | Sat Nov 05 23:18:06 2011 +0200 |
tree | 7fd8113792e02e355b4913e82cb4b6cf532504b9 | |
parent | 972ba9e41f457007570b3de0a54e934881c7281e [diff] [blame] |
Accept None as start and stop parameters for list.index() and tuple.index() Closes #13340.
diff --git a/Misc/NEWS b/Misc/NEWS index d053a2b..2f7b54e 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -9,6 +9,9 @@ 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.