summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-04-05 14:28:42 (GMT)
committerGeorg Brandl <georg@python.org>2009-04-05 14:28:42 (GMT)
commit236f7979ba99430710bc249446a343195e252010 (patch)
treee8a64807b3805cdf586a7793c78660b18ac0f78d /Misc
parentdfd734429ec24b6d55b11f48afe4a9bc8f3db730 (diff)
downloadcpython-236f7979ba99430710bc249446a343195e252010.zip
cpython-236f7979ba99430710bc249446a343195e252010.tar.gz
cpython-236f7979ba99430710bc249446a343195e252010.tar.bz2
Merged revisions 71237-71238 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r71237 | georg.brandl | 2009-04-05 16:24:52 +0200 (So, 05 Apr 2009) | 1 line #1326077: fix traceback formatting of SyntaxErrors. This fixes two differences with formatting coming from Python: a) the reproduction of location details in the error message if no line text is given, b) the prefixing of the last line by one space. ........ r71238 | georg.brandl | 2009-04-05 16:25:41 +0200 (So, 05 Apr 2009) | 1 line Add NEWS entry for r71237. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 38cc777..27438ec 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -327,6 +327,8 @@ Core and Builtins
Library
-------
+- Issue 1326077: fix the formatting of SyntaxErrors by the traceback module.
+
- Issue #1665206 (partially): Move imports in cgitb to the top of the module
instead of performing them in functions. Helps prevent import deadlocking in
threads.