diff options
author | Crowthebird <78076854+thatbirdguythatuknownot@users.noreply.github.com> | 2023-11-20 13:27:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-20 13:27:53 (GMT) |
commit | 1c8f912ebdfdb146cd7dd2d7a3a67d2c5045ddb0 (patch) | |
tree | d2553d0e973e0d59f0bc20c90aba252c5efd6c40 /Misc | |
parent | 56e59a49ae4d9f518c5cc918aefe7eeee11736b4 (diff) | |
download | cpython-1c8f912ebdfdb146cd7dd2d7a3a67d2c5045ddb0.zip cpython-1c8f912ebdfdb146cd7dd2d7a3a67d2c5045ddb0.tar.gz cpython-1c8f912ebdfdb146cd7dd2d7a3a67d2c5045ddb0.tar.bz2 |
bpo-45759: Better error messages for non-matching 'elif'/'else' statements (#29513)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2021-11-10-10-40-05.bpo-45759.WJoB3D.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-11-10-10-40-05.bpo-45759.WJoB3D.rst b/Misc/NEWS.d/next/Core and Builtins/2021-11-10-10-40-05.bpo-45759.WJoB3D.rst new file mode 100644 index 0000000..6d7b020 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2021-11-10-10-40-05.bpo-45759.WJoB3D.rst @@ -0,0 +1 @@ +Improved error messages for ``elif``/``else`` statements not matching any valid statements. Patch by Jeremiah Vivian.
|