summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorHye-Shik Chang <hyeshik@gmail.com>2007-06-05 18:58:51 (GMT)
committerHye-Shik Chang <hyeshik@gmail.com>2007-06-05 18:58:51 (GMT)
commit9b5414090b8cdd7fb086578003398066585a42c7 (patch)
treeb0d831e90bd53dfed625b02efa3df27380f9b716 /Misc
parent82958f0d3b503d7fc448377993e6884f7c51157e (diff)
downloadcpython-9b5414090b8cdd7fb086578003398066585a42c7.zip
cpython-9b5414090b8cdd7fb086578003398066585a42c7.tar.gz
cpython-9b5414090b8cdd7fb086578003398066585a42c7.tar.bz2
Bug #1728403: Fix a bug that CJKCodecs StreamReader hangs when it
reads a file that ends with incomplete sequence and sizehint argument for .read() is specified.
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 cf61b89..a477fb8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -222,6 +222,10 @@ Core and builtins
Library
-------
+- Bug #1728403: Fix a bug that CJKCodecs StreamReader hangs when it
+ reads a file that ends with incomplete sequence and sizehint argument
+ for .read() is specified.
+
- Bug #1730389: Change time.strptime() to use ``\s+`` instead of ``\s*`` when
matching spaces in the specified format argument.