diff options
Diffstat (limited to 'Include/listobject.h')
-rw-r--r-- | Include/listobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/listobject.h b/Include/listobject.h index 73ac724..af1368c 100644 --- a/Include/listobject.h +++ b/Include/listobject.h @@ -26,7 +26,7 @@ typedef struct { extern DL_IMPORT(PyTypeObject) PyList_Type; -#define PyList_Check(op) ((op)->ob_type == &PyList_Type) +#define PyList_Check(op) PyObject_TypeCheck(op, &PyList_Type) extern DL_IMPORT(PyObject *) PyList_New(int size); extern DL_IMPORT(int) PyList_Size(PyObject *); |