summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-10-09 23:37:48 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-10-09 23:37:48 (GMT)
commitcf8016a8d6b3fed550ed961ffd957ab3d19f04da (patch)
treed0b5d0faf11161269fe26e154837ec0ae19a3c28 /Misc
parent76e5538749947eaf5fbf6487805d004ea244b941 (diff)
downloadcpython-cf8016a8d6b3fed550ed961ffd957ab3d19f04da.zip
cpython-cf8016a8d6b3fed550ed961ffd957ab3d19f04da.tar.gz
cpython-cf8016a8d6b3fed550ed961ffd957ab3d19f04da.tar.bz2
Issues #2384 and #3975: Tracebacks were not correctly printed when the source file
contains a ``coding:`` header: the wrong line was displayed, and the encoding was not respected. Patch by Victor Stinner.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2505bfa..7bad53ce 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -15,6 +15,10 @@ What's New in Python 3.0 beta 5
Core and Builtins
-----------------
+- Issues #2384 and #3975: Tracebacks were not correctly printed when the
+ source file contains a ``coding:`` header: the wrong line was displayed, and
+ the encoding was not respected.
+
- Issue #3740: Null-initialize module state.
- Issue #3946: PyObject_CheckReadBuffer crashed on a memoryview object.