summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Core and Builtins/2017-12-24-19-48-59.bpo-17611.P85kWL.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Misc/NEWS.d/next/Core and Builtins/2017-12-24-19-48-59.bpo-17611.P85kWL.rst')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2017-12-24-19-48-59.bpo-17611.P85kWL.rst10
1 files changed, 0 insertions, 10 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2017-12-24-19-48-59.bpo-17611.P85kWL.rst b/Misc/NEWS.d/next/Core and Builtins/2017-12-24-19-48-59.bpo-17611.P85kWL.rst
deleted file mode 100644
index 52949e6..0000000
--- a/Misc/NEWS.d/next/Core and Builtins/2017-12-24-19-48-59.bpo-17611.P85kWL.rst
+++ /dev/null
@@ -1,10 +0,0 @@
-Simplified the interpreter loop by moving the logic of unrolling the stack
-of blocks into the compiler. The compiler emits now explicit instructions
-for adjusting the stack of values and calling the cleaning up code for
-:keyword:`break`, :keyword:`continue` and :keyword:`return`.
-
-Removed opcodes :opcode:`BREAK_LOOP`, :opcode:`CONTINUE_LOOP`,
-:opcode:`SETUP_LOOP` and :opcode:`SETUP_EXCEPT`. Added new opcodes
-:opcode:`ROT_FOUR`, :opcode:`BEGIN_FINALLY` and :opcode:`CALL_FINALLY` and
-:opcode:`POP_FINALLY`. Changed the behavior of :opcode:`END_FINALLY` and
-:opcode:`WITH_CLEANUP_START`.