Comment fixes extracted from patch by Demur Rumed.

This commit is contained in:
Serhiy Storchaka 2016-06-12 17:02:10 +03:00
parent 0db9016a56
commit 5697c4b641
3 changed files with 104 additions and 108 deletions

View file

@ -2132,7 +2132,7 @@ _Py_CheckFunctionResult(PyObject *func, PyObject *result, const char *where)
"%s returned NULL without setting an error",
where);
#ifdef Py_DEBUG
/* Ensure that the bug is catched in debug mode */
/* Ensure that the bug is caught in debug mode */
Py_FatalError("a function returned NULL without setting an error");
#endif
return NULL;