diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2014-07-05 00:26:22 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2014-07-05 00:26:22 (GMT) |
commit | a93342b8b2aeb0332de9ea0880d4592824467f3f (patch) | |
tree | 189d7e7f1120d30ab29c82bc01b9c95ca73993c0 /Misc | |
parent | 92e8deebecd5e5d754a523864b2cb2c70fb87866 (diff) | |
parent | acc8cf2cfa18c445e8c9b324206eb7c5e392bcb7 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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) |