Searched refs:PyObject_Not (Results 1 – 12 of 12) sorted by relevance
17 Update uses of PyObject_IsTrue(), PyObject_Not(), PyObject_IsInstance(),
463 cmp_result = PyObject_Not(r0->length); in range_equals()528 cmp_result = PyObject_Not(r->length); in range_hash()
1463 PyObject_Not(PyObject *v) in PyObject_Not() function
286 PyAPI_FUNC(int) PyObject_Not(PyObject *);
498 if ((Py_TYPE(value)->tp_as_sequence == NULL) && PyObject_Not(value)) { in Subscript()
466 EXPORT_FUNC(PyObject_Not)
510 function,PyObject_Not,3.2,
1763 PyObject_Not:int:::1764 PyObject_Not:PyObject*:o:0:
249 return PyObject_Not(a); in _operator_not__impl()
278 .. c:function:: int PyObject_Not(PyObject *o)
1101 function PyObject_Not
199 - Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(),29610 - New function PyObject_Not(x) calculates (not x) according to Python's