summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-07-28 01:58:41 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-07-28 01:58:41 (GMT)
commit8243ddb6ca5c0f78764a28f044f0c0284774d317 (patch)
treeca6b3fc1c3b76df1ebd7b0a4d575dd49470f4b56 /Misc
parent082a65ab1fd8c54df7a128d0e813061db9bfbba8 (diff)
downloadcpython-8243ddb6ca5c0f78764a28f044f0c0284774d317.zip
cpython-8243ddb6ca5c0f78764a28f044f0c0284774d317.tar.gz
cpython-8243ddb6ca5c0f78764a28f044f0c0284774d317.tar.bz2
Issue #5006: Better handling of unicode byte-order marks (BOM) in the io
library. This means, for example, that opening an UTF-16 text file in append mode doesn't add a BOM at the end of the file if the file isn't empty.
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 8bc2d61..5ce7664 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -84,6 +84,10 @@ C-API
Library
-------
+- Issue #5006: Better handling of unicode byte-order marks (BOM) in the io
+ library. This means, for example, that opening an UTF-16 text file in append
+ mode doesn't add a BOM at the end of the file if the file isn't empty.
+
- Issue #3704: cookielib was not properly handling URLs with a / in the
parameters.