MCPcopy Create free account
hub / github.com/pydata/numexpr / NumExpr_dealloc

Function NumExpr_dealloc

numexpr3/numexpr_object.cpp:27–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25#endif
26
27static void
28NumExpr_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
37static PyObject *
38NumExpr_new(PyTypeObject *type, PyObject *args, PyObject *kwds)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…