summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-10-07 14:16:31 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-10-07 14:16:31 (GMT)
commit586bfe4500465442acff5043f7b589e4a8b97b6a (patch)
tree3b2af5c4db751fb4a103a9058335fb65ab342ad1 /Misc
parent7b847a46bca22797fcb3149d5e52627fc439ba18 (diff)
downloadcpython-586bfe4500465442acff5043f7b589e4a8b97b6a.zip
cpython-586bfe4500465442acff5043f7b589e4a8b97b6a.tar.gz
cpython-586bfe4500465442acff5043f7b589e4a8b97b6a.tar.bz2
Issue #13063: the Windows error ERROR_NO_DATA (numbered 232 and described
as "The pipe is being closed") is now mapped to POSIX errno EPIPE (previously EINVAL).
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 44435fe..e9555b3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ What's New in Python 3.2.3?
Core and Builtins
-----------------
+- Issue #13063: the Windows error ERROR_NO_DATA (numbered 232 and described
+ as "The pipe is being closed") is now mapped to POSIX errno EPIPE
+ (previously EINVAL).
+
- Issue #12911: Fix memory consumption when calculating the repr() of huge
tuples or lists.