MCPcopy Create free account
hub / github.com/Distributive-Network/PythonMonkey / JSFunctionProxy_dealloc

Method JSFunctionProxy_dealloc

src/JSFunctionProxy.cc:22–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20#include <Python.h>
21
22void JSFunctionProxyMethodDefinitions::JSFunctionProxy_dealloc(JSFunctionProxy *self)
23{
24 delete self->jsFunc;
25}
26
27PyObject *JSFunctionProxyMethodDefinitions::JSFunctionProxy_new(PyTypeObject *subtype, PyObject *args, PyObject *kwds) {
28 JSFunctionProxy *self = (JSFunctionProxy *)subtype->tp_alloc(subtype, 0);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected