]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-43400: Remove "easy to use" from mock docs (GH-24752) (GH-24758)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 5 Mar 2021 00:35:43 +0000 (16:35 -0800)
committerGitHub <noreply@github.com>
Fri, 5 Mar 2021 00:35:43 +0000 (16:35 -0800)
Doc/library/unittest.mock.rst

index c5360f91f518d61f50b07b9c764046c04ca4dad0..9e73ec3240303772e9632cd9f1c07c007dab7637 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.