summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-07-05 00:24:13 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-07-05 00:24:13 (GMT)
commitacc8cf2cfa18c445e8c9b324206eb7c5e392bcb7 (patch)
tree0c8300eb1c66c97fcf29404ef008b3d544aeefdb /Misc
parente865128605faf64c63cd216507a0875e4c5a424b (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a413f48..4e08323 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.