53 static void PyProxy_dealloc(
PyProxy *self);
54 static PyObject* PyProxy_new(PyTypeObject *type, PyObject *args, PyObject *kwds);
55 static int PyProxy_init(
PyProxy *self, PyObject *args, PyObject *kwds);
58 static PyObject *PyProxy_richcompare(PyObject *v, PyObject *w,
int op);
59 static PyObject *PyProxy_call(
PyProxy *self, PyObject *args, PyObject *kwds);
64 static PyTypeObject PyProxyType;
65 static PyModuleDef PyProxyModule;
67 static void PyProxy_addTpDict(PyObject *tp_dict);