diff options
| author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2011-11-04 22:17:45 +0100 |
|---|---|---|
| committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2011-11-04 22:17:45 +0100 |
| commit | 97c1bef6a4f3c522826386480c62ec27fe46301d (patch) | |
| tree | ad74de7776f27145f7341dfe24ca961e5267603d /Misc | |
| parent | 3c85fe07f40a18d9f5733e85b213a6992c5b2ed4 (diff) | |
| download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |
