diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2014-07-05 00:24:13 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2014-07-05 00:24:13 (GMT) |
commit | acc8cf2cfa18c445e8c9b324206eb7c5e392bcb7 (patch) | |
tree | 0c8300eb1c66c97fcf29404ef008b3d544aeefdb /Misc | |
parent | e865128605faf64c63cd216507a0875e4c5a424b (diff) | |
download | cpython-acc8cf2cfa18c445e8c9b324206eb7c5e392bcb7.zip cpython-acc8cf2cfa18c445e8c9b324206eb7c5e392bcb7.tar.gz cpython-acc8cf2cfa18c445e8c9b324206eb7c5e392bcb7.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
@@ -27,6 +27,9 @@ Core and Builtins Library ------- +- Issue #21897: Fix a crash with the f_locals attribute with closure + variables when frame.clear() has been called. + - Issue #21151: Fixed a segfault in the winreg module when ``None`` is passed as a ``REG_BINARY`` value to SetValueEx. Patch by John Ehresman. |