]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Correct name of bytecode in change note. (GH-22723)
authorMark Shannon <mark@hotpy.org>
Mon, 19 Oct 2020 12:20:33 +0000 (13:20 +0100)
committerGitHub <noreply@github.com>
Mon, 19 Oct 2020 12:20:33 +0000 (13:20 +0100)
Misc/NEWS.d/3.9.0a2.rst

index 1fd23b763e2a1edd455317300340f622eb53f39c..226ea0d3df2243627de89faf6526ebc4ec61b3a3 100644 (file)
@@ -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.