| 20 | #include <Python.h> |
| 21 | |
| 22 | void JSMethodProxyMethodDefinitions::JSMethodProxy_dealloc(JSMethodProxy *self) |
| 23 | { |
| 24 | delete self->jsFunc; |
| 25 | return; |
| 26 | } |
| 27 | |
| 28 | PyObject *JSMethodProxyMethodDefinitions::JSMethodProxy_new(PyTypeObject *subtype, PyObject *args, PyObject *kwds) { |
| 29 | JSFunctionProxy *jsFunctionProxy; |
nothing calls this directly
no outgoing calls
no test coverage detected