From 2087023fdec2c89070bd14f384a3c308c548a94a Mon Sep 17 00:00:00 2001 From: Tony Flury Date: Wed, 12 Sep 2018 23:21:16 +0100 Subject: bpo-32933: Implement __iter__ method on mock_open() (GH-5974) --- Doc/library/unittest.mock.rst | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Doc/library/unittest.mock.rst') diff --git a/Doc/library/unittest.mock.rst b/Doc/library/unittest.mock.rst index fd4e067546..d1b18d08f7 100644 --- a/Doc/library/unittest.mock.rst +++ b/Doc/library/unittest.mock.rst @@ -2095,6 +2095,10 @@ mock_open .. versionchanged:: 3.5 *read_data* is now reset on each call to the *mock*. + .. versionchanged:: 3.8 + Added :meth:`__iter__` to implementation so that iteration (such as in for + loops) correctly consumes *read_data*. + Using :func:`open` as a context manager is a great way to ensure your file handles are closed properly and is becoming common:: -- cgit v1.2.1