diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2021-06-07 01:42:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-07 01:42:31 (GMT) |
commit | 67dfa6f2a508c325715625fe442f2ce20270a8b3 (patch) | |
tree | b3f30c44f993a8f66790b5f2945105f2481850ce /Misc/NEWS.d | |
parent | 0d12f245523178eb62e22f5da5a276bfc7004ac4 (diff) | |
download | cpython-67dfa6f2a508c325715625fe442f2ce20270a8b3.zip cpython-67dfa6f2a508c325715625fe442f2ce20270a8b3.tar.gz cpython-67dfa6f2a508c325715625fe442f2ce20270a8b3.tar.bz2 |
bpo-44322: Document more SyntaxError details. (GH-26562)
1. SyntaxError args have a tuple of other attributes.
2. Attributes are adjusted for errors in f-string field expressions.
3. Compile() can raise SyntaxErrors.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Documentation/2021-06-06-14-12-00.bpo-44322.K0PHfE.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Documentation/2021-06-06-14-12-00.bpo-44322.K0PHfE.rst b/Misc/NEWS.d/next/Documentation/2021-06-06-14-12-00.bpo-44322.K0PHfE.rst new file mode 100644 index 0000000..48dd7e6 --- /dev/null +++ b/Misc/NEWS.d/next/Documentation/2021-06-06-14-12-00.bpo-44322.K0PHfE.rst @@ -0,0 +1,2 @@ +Document that SyntaxError args have a details tuple and that details are +adjusted for errors in f-string field replacement expressions. |