summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2015-08-06 10:15:51 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2015-08-06 10:15:51 (GMT)
commit86b34da5ef249b865281704a5f6721391edb0c1c (patch)
tree41a24e383eb516446c85551e98ecf4d113e47e74 /Misc
parent0b2833eaf2f21f0d70cee07eea39e139fd5ce1ef (diff)
downloadcpython-86b34da5ef249b865281704a5f6721391edb0c1c.zip
cpython-86b34da5ef249b865281704a5f6721391edb0c1c.tar.gz
cpython-86b34da5ef249b865281704a5f6721391edb0c1c.tar.bz2
Issue #23004: mock_open() now reads binary data correctly when the type of read_data is bytes.
Initial patch by Aaron Hill.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 69ed31d..d5b5dc5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -71,6 +71,9 @@ Library
- Issue #23888: Handle fractional time in cookie expiry. Patch by ssh.
+- Issue #23004: mock_open() now reads binary data correctly when the type of
+ read_data is bytes. Initial patch by Aaron Hill.
+
- Issue #23652: Make it possible to compile the select module against the
libc headers from the Linux Standard Base, which do not include some
EPOLL macros. Patch by Matt Frank.