From 047c54bb2400c14057ecbd32d646d08621ee703e Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Fri, 16 May 2003 14:36:26 +0000 Subject: Missing parenthesis. --- Doc/ext/newtypes.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/ext/newtypes.tex b/Doc/ext/newtypes.tex index ca73985..8b300aa 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; } -- cgit v0.12