MCPcopy Create free account
hub / github.com/FreeCAD/FreeCAD / isBad

Method isBad

src/Base/TypePyImp.cpp:90–98  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

88}
89
90PyObject* 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
100PyObject* TypePy::isDerivedFrom(PyObject* args) const
101{

Callers 2

isDerivedFromMethod · 0.45
createInstanceByNameMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected