From: Mark Shannon Date: Mon, 19 Oct 2020 12:20:33 +0000 (+0100) Subject: Correct name of bytecode in change note. (GH-22723) X-Git-Tag: v3.10.0a2~165 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b580ed1d9d55461d8dde027411b90be26cae131e;p=thirdparty%2FPython%2Fcpython.git Correct name of bytecode in change note. (GH-22723) --- diff --git a/Misc/NEWS.d/3.9.0a2.rst b/Misc/NEWS.d/3.9.0a2.rst index 1fd23b763e2a..226ea0d3df22 100644 --- a/Misc/NEWS.d/3.9.0a2.rst +++ b/Misc/NEWS.d/3.9.0a2.rst @@ -236,7 +236,7 @@ coroutine of an asynchronous generator. Removed WITH_CLEANUP_START, WITH_CLEANUP_FINISH, BEGIN_FINALLY, END_FINALLY, CALL_FINALLY and POP_FINALLY bytecodes. Replaced with RERAISE and -WITH_EXCEPT_FINISH bytecodes. The compiler now generates different code for +WITH_EXCEPT_START bytecodes. The compiler now generates different code for exceptional and non-exceptional branches for 'with' and 'try-except' statements. For 'try-finally' statements the 'finally' block is replicated for each exit from the 'try' body.