| 25 | #endif |
| 26 | |
| 27 | static void |
| 28 | NumExpr_dealloc(NumExprObject *self) |
| 29 | { |
| 30 | // Temporaries are held at the module level in an memory block. |
| 31 | free( self->program ); |
| 32 | free( self->registers ); |
| 33 | free( self->scalar_mem ); |
| 34 | Py_TYPE(self)->tp_free( (PyObject*)self ); |
| 35 | } |
| 36 | |
| 37 | static PyObject * |
| 38 | NumExpr_new(PyTypeObject *type, PyObject *args, PyObject *kwds) |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…