summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2003-05-16 14:36:26 (GMT)
committerRaymond Hettinger <python@rcn.com>2003-05-16 14:36:26 (GMT)
commit047c54bb2400c14057ecbd32d646d08621ee703e (patch)
tree971445bd93b4c680f05655994f0cd45cfc171fc5
parent1f325562f024132d3603c718966dd5d8c8be79ea (diff)
downloadcpython-047c54bb2400c14057ecbd32d646d08621ee703e.zip
cpython-047c54bb2400c14057ecbd32d646d08621ee703e.tar.gz
cpython-047c54bb2400c14057ecbd32d646d08621ee703e.tar.bz2
Missing parenthesis.
-rw-r--r--Doc/ext/newtypes.tex2
1 files changed, 1 insertions, 1 deletions
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;
}