summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
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)