diff options
author | Georg Brandl <georg@python.org> | 2009-09-17 11:28:09 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-09-17 11:28:09 (GMT) |
commit | e9741f3ed8487da1d7c8ac8b0c04d3f09802fb1a (patch) | |
tree | 7abc5212bc70ad2f5a217a038681cae4fd71d9d4 /Misc | |
parent | bc3777d85e9f73bb8e541faf91103fb2374628a3 (diff) | |
download | cpython-e9741f3ed8487da1d7c8ac8b0c04d3f09802fb1a.zip cpython-e9741f3ed8487da1d7c8ac8b0c04d3f09802fb1a.tar.gz cpython-e9741f3ed8487da1d7c8ac8b0c04d3f09802fb1a.tar.bz2 |
Issue #6922: Fix an infinite loop when trying to decode an invalid
UTF-32 stream with a non-raising error handler like "replace" or "ignore".
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 1 Core and Builtins ----------------- +- Issue #6922: Fix an infinite loop when trying to decode an invalid + UTF-32 stream with a non-raising error handler like "replace" or "ignore". + - Issue #6713: Improve performance of integer -> string conversions. - Issue #1590864: Fix potential deadlock when mixing threads and fork(). |