summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-09-05 17:14:54 (GMT)
committerBenjamin Peterson <benjamin@python.org>2016-09-05 17:14:54 (GMT)
commit2f40ed4b94ad48cca01a96620da8c3eb15493539 (patch)
tree108449a0c9a2e4e918da13abbad61d1fcc4456ae /Misc/NEWS
parentfb5ce7eea18b287679f4a8b70c2391f6e9d71833 (diff)
downloadcpython-2f40ed4b94ad48cca01a96620da8c3eb15493539.zip
cpython-2f40ed4b94ad48cca01a96620da8c3eb15493539.tar.gz
cpython-2f40ed4b94ad48cca01a96620da8c3eb15493539.tar.bz2
do not allow _PyGen_Finalize to fail (closes #27811)
Patch from Armin Rigo.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 90f0bdd..8558db4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: TBA
Core and Builtins
-----------------
+- Issue #27811: Fix a crash when a coroutine that has not been awaited is
+ finalized with warnings-as-errors enabled.
+
- Issue #27587: Fix another issue found by PVS-Studio: Null pointer check
after use of 'def' in _PyState_AddModule().
Initial patch by Christian Heimes.