diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2023-10-21 12:38:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-21 12:38:29 (GMT) |
commit | b578e51f026a45576930816d6784697192ed472e (patch) | |
tree | 80c166fec30df2d8fcbbd17d00868d565aed1c38 /Doc | |
parent | f71cd5394efe154ba92228b2b67be910cc1ede95 (diff) | |
download | cpython-b578e51f026a45576930816d6784697192ed472e.zip cpython-b578e51f026a45576930816d6784697192ed472e.tar.gz cpython-b578e51f026a45576930816d6784697192ed472e.tar.bz2 |
gh-111123: symtable should visit exception handlers before the else block (#111142)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.13.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index 5da5f93..e830c91 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -106,6 +106,10 @@ Other Language Changes the file is not accessible. (Contributed by Moonsik Park in :gh:`82367`.) +* Fixed a bug where a :keyword:`global` decleration in an :keyword:`except` block + is rejected when the global is used in the :keyword:`else` block. + (Contributed by Irit Katriel in :gh:`111123`.) + New Modules =========== |