summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2005-08-24 07:38:12 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2005-08-24 07:38:12 (GMT)
commit56066d2e554b6b92375d3e276f2f02663526c087 (patch)
tree877e93e7f59a7f09a713c029d8b2227f61b8521d /Misc
parent6d2b346140ed0f3bc4c67fc33bf69a60c496e6a4 (diff)
downloadcpython-56066d2e554b6b92375d3e276f2f02663526c087.zip
cpython-56066d2e554b6b92375d3e276f2f02663526c087.tar.gz
cpython-56066d2e554b6b92375d3e276f2f02663526c087.tar.bz2
Return complete lines from codec stream readers
even if there is an exception in later lines, resulting in correct line numbers for decoding errors in source code. Fixes #1178484. Will backport to 2.4.
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 b88608e..a65db9d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -191,6 +191,10 @@ Extension Modules
Library
-------
+- Bug #1178484: Return complete lines from codec stream readers
+ even if there is an exception in later lines, resulting in
+ correct line numbers for decoding errors in source code.
+
- Bug #1192315: Disallow negative arguments to clear() in pdb.
- Patch #827386: Support absolute source paths in msvccompiler.py.