#3021: Antoine Pitrou's Lexical exception handlers
diff --git a/Misc/NEWS b/Misc/NEWS
index 410b668..4c8d368 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -49,6 +49,10 @@
Exception (KeyboardInterrupt, and SystemExit) propagate instead of
ignoring them.
+- #3021 Exception reraising sematics have been significantly improved. However,
+ f_exc_type, f_exc_value, and f_exc_traceback cannot be accessed from Python
+ code anymore.
+
Extension Modules
-----------------
diff --git a/Misc/cheatsheet b/Misc/cheatsheet
index 50ffc22..0f18ac3 100644
--- a/Misc/cheatsheet
+++ b/Misc/cheatsheet
@@ -1262,9 +1262,6 @@
f_lineno (int, R/O): current line number
f_lasti (int, R/O): precise instruction (index into bytecode)
f_trace (function/None, R/W): debug hook called at start of each source line
- f_exc_type (Type/None, R/W): Most recent exception type
- f_exc_value (any, R/W): Most recent exception value
- f_exc_traceback (traceback/None, R/W): Most recent exception traceback
Tracebacks:
tb_next (frame/None, R/O): next level in stack trace (toward the frame where
the exception occurred)