I\'m using the Python C API to call Python functions from my application. I\'d like to present a list of functions that could be called and would like to be able to limit th
Your C code can call inspect.getargspec just like any Python code would (e.g. via PyObject_CallMethod or other equivalent ways) and get all the scoop about the signature of each function or other callable that it may care about.