summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2011-11-04 22:17:45 +0100
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2011-11-04 22:17:45 +0100
commit97c1bef6a4f3c522826386480c62ec27fe46301d (patch)
treead74de7776f27145f7341dfe24ca961e5267603d /Misc
parent3c85fe07f40a18d9f5733e85b213a6992c5b2ed4 (diff)
downloadcpython-git-97c1bef6a4f3c522826386480c62ec27fe46301d.tar.gz
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)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7ef1977317..e8917ed3bc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ What's New in Python 3.2.3?
Core and Builtins
-----------------
+- 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)
+
- Issue #10519: Avoid unnecessary recursive function calls in
setobject.c.