summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-01-04 13:15:39 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-01-04 13:15:39 (GMT)
commitdc5554008f939e719760b490812065456e8313b5 (patch)
treedf01dcc0e335327aa94cb10d944e7af14c93a2e3 /Misc
parent0fcab4a3ed5e39769609b60d6179c4c801e45985 (diff)
downloadcpython-dc5554008f939e719760b490812065456e8313b5.zip
cpython-dc5554008f939e719760b490812065456e8313b5.tar.gz
cpython-dc5554008f939e719760b490812065456e8313b5.tar.bz2
Issue #9015, #9611: stdprinter.write() clamps the length to 2^31-1 on Windows
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 2 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index bebe16b..2c5df9e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,8 +12,8 @@ Core and Builtins
doesn't have PY_SSIZE_T_CLEAN define and the size doesn't fit in an int
(length bigger than 2^31-1 bytes).
-- Issue #9015, #9611: FileIO.readinto(), FileIO.write() and os.write() clamp
- the length to 2^31-1 on Windows.
+- Issue #9015, #9611: FileIO.readinto(), FileIO.write(), os.write() and
+ stdprinter.write() clamp the length to 2^31-1 on Windows.
- Issue #8278: On Windows and with a NTFS filesystem, os.stat() and os.utime()
can now handle dates after 2038.