Home
last modified time | relevance | path

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

/external/python/cpython3/Misc/NEWS.d/
D3.5.0b2.rst17 Update uses of PyObject_IsTrue(), PyObject_Not(), PyObject_IsInstance(),
/external/python/cpython2/PC/os2vacpp/
Dpython.def320 PyObject_Not
/external/python/cpython3/Include/
Dobject.h262 PyAPI_FUNC(int) PyObject_Not(PyObject *);
/external/python/cpython3/Objects/
Drangeobject.c449 cmp_result = PyObject_Not(r0->length); in range_equals()
514 cmp_result = PyObject_Not(r->length); in range_hash()
Dobject.c1421 PyObject_Not(PyObject *v) in PyObject_Not() function
/external/python/cpython2/Include/
Dobject.h486 PyAPI_FUNC(int) PyObject_Not(PyObject *);
/external/python/cpython3/PC/
Dpython3.def486 PyObject_Not=python39.PyObject_Not
/external/protobuf/python/google/protobuf/pyext/
Drepeated_scalar_container.cc498 if ((Py_TYPE(value)->tp_as_sequence == NULL) && PyObject_Not(value)) { in Subscript()
/external/python/cpython2/Modules/
Doperator.c104 spami(op_not_ , PyObject_Not) in spami()
/external/python/cpython2/PC/os2emx/
Dpython27.def473 "PyObject_Not"
/external/python/cpython3/Doc/c-api/
Dobject.rst278 .. c:function:: int PyObject_Not(PyObject *o)
/external/python/cpython3/Modules/
D_operator.c236 return PyObject_Not(a); in _operator_not__impl()
/external/python/cpython2/Doc/c-api/
Dobject.rst330 .. c:function:: int PyObject_Not(PyObject *o)
/external/python/cpython2/Misc/NEWS.d/
D2.7.11rc1.rst110 Update uses of PyObject_IsTrue(), PyObject_Not(), PyObject_IsInstance(),
/external/python/cpython3/Doc/data/
Drefcounts.dat1757 PyObject_Not:int:::
1758 PyObject_Not:PyObject*:o:0:
/external/python/cpython2/Objects/
Dobject.c1600 PyObject_Not(PyObject *v) in PyObject_Not() function
/external/python/cpython3/Misc/
DHISTORY199 - Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(),
29610 - New function PyObject_Not(x) calculates (not x) according to Python's
/external/python/cpython2/Misc/
DHISTORY12231 - New function PyObject_Not(x) calculates (not x) according to Python's