diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2021-06-03 22:52:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-03 22:52:12 (GMT) |
commit | b250f89bb7e05e72a4641d44b988866b919575db (patch) | |
tree | 43d02e145f333ecb25e5afa704783bbf1e8bbc38 /Misc/NEWS.d | |
parent | 3446516ffa92c98519146253153484291947b273 (diff) | |
download | cpython-b250f89bb7e05e72a4641d44b988866b919575db.zip cpython-b250f89bb7e05e72a4641d44b988866b919575db.tar.gz cpython-b250f89bb7e05e72a4641d44b988866b919575db.tar.bz2 |
bpo-44305: Improve syntax error for try blocks without except or finally (GH-26523)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2021-06-03-22-51-50.bpo-44305.66dVDG.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-06-03-22-51-50.bpo-44305.66dVDG.rst b/Misc/NEWS.d/next/Core and Builtins/2021-06-03-22-51-50.bpo-44305.66dVDG.rst new file mode 100644 index 0000000..eebc26f --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2021-06-03-22-51-50.bpo-44305.66dVDG.rst @@ -0,0 +1,2 @@ +Improve error message for ``try`` blocks without ``except`` or ``finally`` +blocks. Patch by Pablo Galindo. |