diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2021-03-22 17:28:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-22 17:28:11 (GMT) |
commit | 96eeff516204b7cc751103fa33dcc665e387846e (patch) | |
tree | 7eb595bad5b876e53ccf91f041fe4d5512742fd0 /Misc | |
parent | 123ff266cda9ad279106f20dca06ba114f6a9b8a (diff) | |
download | cpython-96eeff516204b7cc751103fa33dcc665e387846e.zip cpython-96eeff516204b7cc751103fa33dcc665e387846e.tar.gz cpython-96eeff516204b7cc751103fa33dcc665e387846e.tar.bz2 |
bpo-43555: Report the column offset for invalid line continuation character (GH-24939)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2021-03-19-22-49-40.bpo-43555.ZmhYSA.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-03-19-22-49-40.bpo-43555.ZmhYSA.rst b/Misc/NEWS.d/next/Core and Builtins/2021-03-19-22-49-40.bpo-43555.ZmhYSA.rst new file mode 100644 index 0000000..55a2fe2 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2021-03-19-22-49-40.bpo-43555.ZmhYSA.rst @@ -0,0 +1,2 @@ +Report the column offset for :exc:`SyntaxError` for invalid line +continuation characters. Patch by Pablo Galindo. |