listobject.h 165 B

12345
  1. /* empty */
  2. #define PyList_Check(op) \
  3. PyType_FastSubclass((op)->ob_type, Py_TPFLAGS_LIST_SUBCLASS)
  4. #define PyList_CheckExact(op) ((op)->ob_type == &PyList_Type)