diff --git a/Doc/ext/newtypes.tex b/Doc/ext/newtypes.tex index ca7398503b..8b300aaee5 100644 --- a/Doc/ext/newtypes.tex +++ b/Doc/ext/newtypes.tex @@ -1359,7 +1359,7 @@ you are implementing, use the \cfunction{PyObject_TypeCheck} function. A sample of its use might be something like the following: \begin{verbatim} - if (! PyObject_TypeCheck(some_object, &MyType) { + if (! PyObject_TypeCheck(some_object, &MyType)) { PyErr_SetString(PyExc_TypeError, "arg #1 not a mything"); return NULL; }