summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorIrit Katriel <iritkatriel@yahoo.com>2020-12-22 19:53:09 (GMT)
committerGitHub <noreply@github.com>2020-12-22 19:53:09 (GMT)
commit069560b1171eb6385121ff3b6331e8814a4e7454 (patch)
tree5dfe135ad4890fc02ace20501927d2c46902b9ba /Misc
parent6afb730e2a8bf0b472b4c3157bcf5b44aa7e6d56 (diff)
downloadcpython-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.rst1
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).