diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2023-09-07 14:00:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-07 14:00:13 (GMT) |
commit | b2729e93e9d73503b1fda4ea4fecd77c58909091 (patch) | |
tree | 1dbd2482d926c33423c48fde3a2e3505cbb5c5a6 /Misc/NEWS.d | |
parent | ac31f714c3e55a7951a9f3f9c823740c20c5d595 (diff) | |
download | cpython-b2729e93e9d73503b1fda4ea4fecd77c58909091.zip cpython-b2729e93e9d73503b1fda4ea4fecd77c58909091.tar.gz cpython-b2729e93e9d73503b1fda4ea4fecd77c58909091.tar.bz2 |
gh-88943: Improve syntax error for non-ASCII character that follows a numerical literal (GH-109081)
It now points on the invalid non-ASCII character, not on the valid numerical literal.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2023-09-07-16-05-36.gh-issue-88943.rH_X3W.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-09-07-16-05-36.gh-issue-88943.rH_X3W.rst b/Misc/NEWS.d/next/Core and Builtins/2023-09-07-16-05-36.gh-issue-88943.rH_X3W.rst new file mode 100644 index 0000000..a99830f --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2023-09-07-16-05-36.gh-issue-88943.rH_X3W.rst @@ -0,0 +1,3 @@ +Improve syntax error for non-ASCII character that follows a numerical +literal. It now points on the invalid non-ASCII character, not on the valid +numerical literal. |