summaryrefslogtreecommitdiffstats
path: root/Lib/unittest
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-07-11 07:51:37 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-07-11 07:51:37 (GMT)
commit204bf0b9aecd221c33f3e0909f261411783acf1b (patch)
tree53640723738b9ed6b5c99010d8a88d328766c66e /Lib/unittest
parent0ca0edee336a98f209ed79e640a9dc80620a29bd (diff)
downloadcpython-204bf0b9aecd221c33f3e0909f261411783acf1b.zip
cpython-204bf0b9aecd221c33f3e0909f261411783acf1b.tar.gz
cpython-204bf0b9aecd221c33f3e0909f261411783acf1b.tar.bz2
English spelling and grammar fixes
Diffstat (limited to 'Lib/unittest')
-rw-r--r--Lib/unittest/mock.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/unittest/mock.py b/Lib/unittest/mock.py
index 1adfcf9..7f30b28 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.