Lines Matching refs:PyObject
18 static PyObject *false_str = NULL;
19 static PyObject *true_str = NULL;
21 static PyObject *
24 PyObject *s;
38 PyObject *PyBool_FromLong(long ok)
40 PyObject *result;
52 static PyObject *
53 bool_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
56 PyObject *x = Py_False;
69 static PyObject *
70 bool_and(PyObject *a, PyObject *b)
78 static PyObject *
79 bool_or(PyObject *a, PyObject *b)
87 static PyObject *
88 bool_xor(PyObject *a, PyObject *b)