summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorEric V. Smith <eric@trueblade.com>2015-08-07 22:50:24 (GMT)
committerEric V. Smith <eric@trueblade.com>2015-08-07 22:50:24 (GMT)
commit577d2069da6d73fa8ce86613fa7088d5e2a9229f (patch)
treef416d967a0fe695e3097ce443617c4cce4d0c102 /Objects
parent61ddabab49d59049c78685f998b29239b0955763 (diff)
downloadcpython-577d2069da6d73fa8ce86613fa7088d5e2a9229f.zip
cpython-577d2069da6d73fa8ce86613fa7088d5e2a9229f.tar.gz
cpython-577d2069da6d73fa8ce86613fa7088d5e2a9229f.tar.bz2
Fix typo in comment.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/abstract.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/abstract.c b/Objects/abstract.c
index 31cc0a8..039a4ca 100644
--- a/Objects/abstract.c
+++ b/Objects/abstract.c
@@ -2131,7 +2131,7 @@ PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw)
/* PyObject_Call() must not be called with an exception set,
because it may clear it (directly or indirectly) and so the
- caller looses its exception */
+ caller loses its exception */
assert(!PyErr_Occurred());
call = func->ob_type->tp_call;