diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2005-08-24 07:38:12 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2005-08-24 07:38:12 (GMT) |
commit | 56066d2e554b6b92375d3e276f2f02663526c087 (patch) | |
tree | 877e93e7f59a7f09a713c029d8b2227f61b8521d /Misc | |
parent | 6d2b346140ed0f3bc4c67fc33bf69a60c496e6a4 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |