diff options
author | Irit Katriel <iritkatriel@yahoo.com> | 2020-12-22 19:53:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-22 19:53:09 (GMT) |
commit | 069560b1171eb6385121ff3b6331e8814a4e7454 (patch) | |
tree | 5dfe135ad4890fc02ace20501927d2c46902b9ba /Misc | |
parent | 6afb730e2a8bf0b472b4c3157bcf5b44aa7e6d56 (diff) | |
download | cpython-069560b1171eb6385121ff3b6331e8814a4e7454.zip cpython-069560b1171eb6385121ff3b6331e8814a4e7454.tar.gz cpython-069560b1171eb6385121ff3b6331e8814a4e7454.tar.bz2 |
bpo-34463: Make python tracebacks identical to C tracebacks for SyntaxErrors without a lineno (GH-23427)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-11-20-19-00-27.bpo-34463.aJcm56.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-11-20-19-00-27.bpo-34463.aJcm56.rst b/Misc/NEWS.d/next/Library/2020-11-20-19-00-27.bpo-34463.aJcm56.rst new file mode 100644 index 0000000..df18354 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-11-20-19-00-27.bpo-34463.aJcm56.rst @@ -0,0 +1 @@ +Fixed discrepancy between :mod:`traceback` and the interpreter in formatting of SyntaxError with lineno not set (:mod:`traceback` was changed to match interpreter). |