diff options
author | Petri Lehtinen <petri@digip.org> | 2011-11-05 21:20:57 (GMT) |
---|---|---|
committer | Petri Lehtinen <petri@digip.org> | 2011-11-05 21:24:31 (GMT) |
commit | c2f0a46111dfc9958d1c0428f688b8f625888c88 (patch) | |
tree | 982262d833eeaa814f91208372ea8b4d57a0c087 /Misc | |
parent | 4e6bf41934de08f62b22b90cda2e331eb4641dea (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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) |