diff options
Diffstat (limited to 'Lib/unittest/mock.py')
-rw-r--r-- | Lib/unittest/mock.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/unittest/mock.py b/Lib/unittest/mock.py index 0ae498c080..0a9aece845 100644 --- a/Lib/unittest/mock.py +++ b/Lib/unittest/mock.py @@ -1351,8 +1351,6 @@ def patch( ): """ `patch` acts as a function decorator, class decorator or a context - - `patch` acts as a function decorator, class decorator or a context manager. Inside the body of the function or with statement, the `target` is patched with a `new` object. When the function/with statement exits the patch is undone. |