]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-43400: Remove "easy to use" from mock docs (GH-24752)
authorEddie Peters <eddie@dinogalactic.com>
Thu, 4 Mar 2021 23:39:29 +0000 (18:39 -0500)
committerGitHub <noreply@github.com>
Thu, 4 Mar 2021 23:39:29 +0000 (15:39 -0800)
Doc/library/unittest.mock.rst

index f795a2e8c1aebff62fce93673e8da714fbd7fa65..1604731b99e3fe5bd37de41f8a27540304bbecc7 100644 (file)
@@ -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.