Home
last modified time | relevance | path

Searched refs:PyObject_Not (Results 1 – 12 of 12) sorted by relevance

/third_party/python/Misc/NEWS.d/
D3.5.0b2.rst17 Update uses of PyObject_IsTrue(), PyObject_Not(), PyObject_IsInstance(),
/third_party/python/Objects/
Drangeobject.c463 cmp_result = PyObject_Not(r0->length); in range_equals()
528 cmp_result = PyObject_Not(r->length); in range_hash()
Dobject.c1463 PyObject_Not(PyObject *v) in PyObject_Not() function
/third_party/python/Include/
Dobject.h286 PyAPI_FUNC(int) PyObject_Not(PyObject *);
/third_party/protobuf/python/google/protobuf/pyext/
Drepeated_scalar_container.cc498 if ((Py_TYPE(value)->tp_as_sequence == NULL) && PyObject_Not(value)) { in Subscript()
/third_party/python/PC/
Dpython3dll.c466 EXPORT_FUNC(PyObject_Not)
/third_party/python/Doc/data/
Dstable_abi.dat510 function,PyObject_Not,3.2,
Drefcounts.dat1763 PyObject_Not:int:::
1764 PyObject_Not:PyObject*:o:0:
/third_party/python/Modules/
D_operator.c249 return PyObject_Not(a); in _operator_not__impl()
/third_party/python/Doc/c-api/
Dobject.rst278 .. c:function:: int PyObject_Not(PyObject *o)
/third_party/python/Misc/
Dstable_abi.txt1101 function PyObject_Not
DHISTORY199 - Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(),
29610 - New function PyObject_Not(x) calculates (not x) according to Python's