From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Fri, 5 Mar 2021 00:35:43 +0000 (-0800) Subject: bpo-43400: Remove "easy to use" from mock docs (GH-24752) (GH-24758) X-Git-Tag: v3.9.3~60 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0dd4cb944b497dc6bd0b3763e461d72e9a7b6490;p=thirdparty%2FPython%2Fcpython.git bpo-43400: Remove "easy to use" from mock docs (GH-24752) (GH-24758) --- diff --git a/Doc/library/unittest.mock.rst b/Doc/library/unittest.mock.rst index c5360f91f518..9e73ec324030 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.