commit | 108d1b4a7962a7777b7fb6108f12df619ea9218b | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Mon Apr 15 21:20:14 2013 +0200 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Mon Apr 15 21:20:14 2013 +0200 |
tree | a8259f9977ddaf53229ba120c603f5c5deadac74 | |
parent | 1b3320659667b688a3d5740d04e4b7480a09fcc3 [diff] [blame] |
Issue #17703: Fix a regression where an illegal use of Py_DECREF() after interpreter finalization can cause a crash.
diff --git a/Misc/NEWS b/Misc/NEWS index d723cb5..3ccdb10 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -17,6 +17,9 @@ Core and Builtins ----------------- +- Issue #17703: Fix a regression where an illegal use of Py_DECREF() after + interpreter finalization can cause a crash. + - Issue #16447: Fixed potential segmentation fault when setting __name__ on a class.