diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-07-11 07:51:37 +0000 |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-07-11 07:51:37 +0000 |
commit | 204bf0b9aecd221c33f3e0909f261411783acf1b (patch) | |
tree | 53640723738b9ed6b5c99010d8a88d328766c66e /Lib/unittest | |
parent | Restore NEWS entries lost in revision 8145f25f26aa (diff) | |
download | cpython-204bf0b9aecd221c33f3e0909f261411783acf1b.tar.gz cpython-204bf0b9aecd221c33f3e0909f261411783acf1b.tar.bz2 cpython-204bf0b9aecd221c33f3e0909f261411783acf1b.zip |
English spelling and grammar fixes
Diffstat (limited to 'Lib/unittest')
-rw-r--r-- | Lib/unittest/mock.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest/mock.py b/Lib/unittest/mock.py index 1adfcf92579..7f30b287ae0 100644 --- a/Lib/unittest/mock.py +++ b/Lib/unittest/mock.py @@ -744,7 +744,7 @@ class NonCallableMock(Base): def _call_matcher(self, _call): """ - Given a call (or simply a (args, kwargs) tuple), return a + Given a call (or simply an (args, kwargs) tuple), return a comparison key suitable for matching with other calls. This is a best effort method which relies on the spec's signature, if available, or falls back on the arguments themselves. |