Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 047c54b

Browse files
committed
Missing parenthesis.
1 parent 1f32556 commit 047c54b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Doc/ext/newtypes.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1359,7 +1359,7 @@ \subsection{More Suggestions}
13591359
A sample of its use might be something like the following:
13601360

13611361
\begin{verbatim}
1362-
if (! PyObject_TypeCheck(some_object, &MyType) {
1362+
if (! PyObject_TypeCheck(some_object, &MyType)) {
13631363
PyErr_SetString(PyExc_TypeError, "arg #1 not a mything");
13641364
return NULL;
13651365
}

0 commit comments

Comments
 (0)