From: Eric V. Smith Date: Fri, 7 Aug 2015 22:50:24 +0000 (-0400) Subject: Fix typo in comment. X-Git-Tag: v3.6.0a1~1816 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=577d2069da6d73fa8ce86613fa7088d5e2a9229f;p=python Fix typo in comment. --- diff --git a/Objects/abstract.c b/Objects/abstract.c index 31cc0a8ba5..039a4ca052 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;