diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-09-05 17:14:54 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-09-05 17:14:54 (GMT) |
commit | 2f40ed4b94ad48cca01a96620da8c3eb15493539 (patch) | |
tree | 108449a0c9a2e4e918da13abbad61d1fcc4456ae /Misc/NEWS | |
parent | fb5ce7eea18b287679f4a8b70c2391f6e9d71833 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |