summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-07-05 00:26:22 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-07-05 00:26:22 (GMT)
commita93342b8b2aeb0332de9ea0880d4592824467f3f (patch)
tree189d7e7f1120d30ab29c82bc01b9c95ca73993c0 /Misc
parent92e8deebecd5e5d754a523864b2cb2c70fb87866 (diff)
parentacc8cf2cfa18c445e8c9b324206eb7c5e392bcb7 (diff)
downloadcpython-a93342b8b2aeb0332de9ea0880d4592824467f3f.zip
cpython-a93342b8b2aeb0332de9ea0880d4592824467f3f.tar.gz
cpython-a93342b8b2aeb0332de9ea0880d4592824467f3f.tar.bz2
Issue #21897: Fix a crash with the f_locals attribute with closure variables when frame.clear() has been called.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 94e95c2..dc42be7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: TBA
Core and Builtins
-----------------
+- Issue #21897: Fix a crash with the f_locals attribute with closure
+ variables when frame.clear() has been called.
+
- Issue #21205: Add a new ``__qualname__`` attribute to generator, the
qualified name, and use it in the representation of a generator
(``repr(gen)``). The default name of the generator (``__name__`` attribute)