Fix typo in comment.

This commit is contained in:
Eric V. Smith 2015-08-07 18:50:24 -04:00
parent 61ddabab49
commit 577d2069da
1 changed files with 1 additions and 1 deletions

View File

@ -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;