[Python-checkins] bpo-43400: Remove "easy to use" from mock docs (GH-24752) (GH-24758)

rhettinger webhook-mailer at python.org
Thu Mar 4 19:35:54 EST 2021


https://github.com/python/cpython/commit/0dd4cb944b497dc6bd0b3763e461d72e9a7b6490
commit: 0dd4cb944b497dc6bd0b3763e461d72e9a7b6490
branch: 3.9
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: rhettinger <rhettinger at users.noreply.github.com>
date: 2021-03-04T16:35:43-08:00
summary:

bpo-43400: Remove "easy to use" from mock docs (GH-24752) (GH-24758)

files:
M Doc/library/unittest.mock.rst

diff --git a/Doc/library/unittest.mock.rst b/Doc/library/unittest.mock.rst
index c5360f91f518d..9e73ec3240303 100644
--- a/Doc/library/unittest.mock.rst
+++ b/Doc/library/unittest.mock.rst
@@ -30,7 +30,7 @@ module and class level attributes within the scope of a test, along with
 some examples of how to use :class:`Mock`, :class:`MagicMock` and
 :func:`patch`.
 
-Mock is very easy to use and is designed for use with :mod:`unittest`. Mock
+Mock is designed for use with :mod:`unittest` and
 is based on the 'action -> assertion' pattern instead of 'record -> replay'
 used by many mocking frameworks.
 



More information about the Python-checkins mailing list