summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2011-11-05 21:20:57 (GMT)
committerPetri Lehtinen <petri@digip.org>2011-11-05 21:24:31 (GMT)
commitc2f0a46111dfc9958d1c0428f688b8f625888c88 (patch)
tree982262d833eeaa814f91208372ea8b4d57a0c087 /Misc
parent4e6bf41934de08f62b22b90cda2e331eb4641dea (diff)
downloadcpython-c2f0a46111dfc9958d1c0428f688b8f625888c88.zip
cpython-c2f0a46111dfc9958d1c0428f688b8f625888c88.tar.gz
cpython-c2f0a46111dfc9958d1c0428f688b8f625888c88.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 de3d3f3..720fef3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2.3?
Core and Builtins
-----------------
+- Issue #13340: Accept None as start and stop parameters for
+ list.index() and tuple.index().
+
- Issue #13343: Fix a SystemError when a lambda expression uses a global
variable in the default value of a keyword-only argument:
(lambda *, arg=GLOBAL_NAME: None)