summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2011-11-06 19:02:39 (GMT)
committerPetri Lehtinen <petri@digip.org>2011-11-06 19:02:39 (GMT)
commitebfaabd66373941e69a0b29589645857e0a6ccfc (patch)
treea2cf14c2acf5c2fcc5a6363fdf1e874762c62ee0 /Misc/NEWS
parentfd6b582a7128434ae7a5fb0e4c202cc04348ade7 (diff)
downloadcpython-ebfaabd66373941e69a0b29589645857e0a6ccfc.zip
cpython-ebfaabd66373941e69a0b29589645857e0a6ccfc.tar.gz
cpython-ebfaabd66373941e69a0b29589645857e0a6ccfc.tar.bz2
Revert "Accept None as start and stop parameters for list.index() and tuple.index()"
Issue #13340.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 0 insertions, 3 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 199f9ff..2923982 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,9 +13,6 @@ Core and Builtins
- Issue #13342: input() used to ignore sys.stdin's and sys.stdout's unicode
error handler in interactive mode (when calling into PyOS_Readline()).
-- 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)