summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/3.9.0a2.rst
diff options
context:
space:
mode:
authorMark Shannon <mark@hotpy.org>2020-10-19 12:20:33 (GMT)
committerGitHub <noreply@github.com>2020-10-19 12:20:33 (GMT)
commitb580ed1d9d55461d8dde027411b90be26cae131e (patch)
tree0d5175d5e88ac8afc1407a9152cce0a9adfde9da /Misc/NEWS.d/3.9.0a2.rst
parent5368c2b6e23660cbce7e38dc68f859c66ac349ee (diff)
downloadcpython-b580ed1d9d55461d8dde027411b90be26cae131e.zip
cpython-b580ed1d9d55461d8dde027411b90be26cae131e.tar.gz
cpython-b580ed1d9d55461d8dde027411b90be26cae131e.tar.bz2
Correct name of bytecode in change note. (GH-22723)
Diffstat (limited to 'Misc/NEWS.d/3.9.0a2.rst')
-rw-r--r--Misc/NEWS.d/3.9.0a2.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS.d/3.9.0a2.rst b/Misc/NEWS.d/3.9.0a2.rst
index 1fd23b7..226ea0d 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.