summaryrefslogtreecommitdiff
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-08-18 18:13:10 +0200
committerVictor Stinner <victor.stinner@gmail.com>2016-08-18 18:13:10 +0200
commit99a19976dd8e777ffb8d498e22ceb9814ce677f3 (patch)
tree3e6d3ba44f5ce72a3098f8e88b94c53bacdcbe9d /Misc/NEWS
parent096dd788f4d7bd1d256977cabf0beec48defc830 (diff)
downloadcpython-99a19976dd8e777ffb8d498e22ceb9814ce677f3.tar.gz
Fix SystemError in "raise" statement
Issue #27558: Fix a SystemError in the implementation of "raise" statement. In a brand new thread, raise a RuntimeError since there is no active exception to reraise. Patch written by Xiang Zhang.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0946553db7..6c78a191e2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ Release date: TBA
Core and Builtins
-----------------
+- Issue #27558: Fix a SystemError in the implementation of "raise" statement.
+ In a brand new thread, raise a RuntimeError since there is no active
+ exception to reraise. Patch written by Xiang Zhang.
+
- Issue #27419: Standard __import__() no longer look up "__import__" in globals
or builtins for importing submodules or "from import". Fixed handling an
error of non-string package name.