cpy3/variadic.h

9 lines
258 B
C
Raw Normal View History

2018-12-06 20:34:27 +00:00
#ifndef VARIADIC_H
#define VARIADIC_H
#include "Python.h"
PyObject* _go_PyObject_CallFunctionObjArgs(PyObject *callable, int argc, PyObject **args);
PyObject* _go_PyObject_CallMethodObjArgs(PyObject *obj, PyObject *name, int argc, PyObject **args);
#endif