summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorRobert Collins <rbtcollins@hp.com>2015-07-17 08:08:45 (GMT)
committerRobert Collins <rbtcollins@hp.com>2015-07-17 08:08:45 (GMT)
commit5329aaa74bfe48a3be4fcd15d070bacfde682267 (patch)
treedf4df4e19122af73c1a262d2719843b8ef990c87 /Misc/NEWS
parent579db160b392404b6dd9608ce5f5bef29a9885a4 (diff)
downloadcpython-5329aaa74bfe48a3be4fcd15d070bacfde682267.zip
cpython-5329aaa74bfe48a3be4fcd15d070bacfde682267.tar.gz
cpython-5329aaa74bfe48a3be4fcd15d070bacfde682267.tar.bz2
Issue #21750: mock_open.read_data can now be read from each instance, as it
could in Python 3.3.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c0a5edf..2c669f3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -66,6 +66,9 @@ Core and Builtins
Library
-------
+- Issue #21750: mock_open.read_data can now be read from each instance, as it
+ could in Python 3.3.
+
- Issue #23247: Fix a crash in the StreamWriter.reset() of CJK codecs.
- Issue #18622: unittest.mock.mock_open().reset_mock would recurse infinitely.