Missing parenthesis.

This commit is contained in:
Raymond Hettinger
2003-05-16 14:36:26 +00:00
parent 1f325562f0
commit 047c54bb24

View File

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