| 88 | } |
| 89 | |
| 90 | PyObject* TypePy::isBad(PyObject* args) const |
| 91 | { |
| 92 | if (!PyArg_ParseTuple(args, "")) { |
| 93 | return nullptr; |
| 94 | } |
| 95 | |
| 96 | bool val = getBaseTypePtr()->isBad(); |
| 97 | return PyBool_FromLong(val ? 1 : 0); |
| 98 | } |
| 99 | |
| 100 | PyObject* TypePy::isDerivedFrom(PyObject* args) const |
| 101 | { |
no outgoing calls
no test coverage detected