From d3c47bcef2a2011f7d650d6ca986e99265fa978c Mon Sep 17 00:00:00 2001 From: esc Date: Wed, 3 Aug 2022 15:40:06 +0200 Subject: [PATCH] adding RESUME opcode to what's new section for Python 3.11 As title --- Doc/whatsnew/3.11.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst index 1b3a685dbacb91..fb227cef89c90b 100644 --- a/Doc/whatsnew/3.11.rst +++ b/Doc/whatsnew/3.11.rst @@ -1162,6 +1162,8 @@ CPython bytecode changes * :opcode:`JUMP_IF_TRUE_OR_POP` and :opcode:`JUMP_IF_FALSE_OR_POP` are now relative rather than absolute. +* :opcode:`RESUME` has been added. It is a no-op. Performs internal tracing, + debugging and optimization checks. Deprecated ==========