I am writing a C extension with python 2.3.5 and need constructs
similar to python
func(*args, **kwds)
What's a neat way to do that?
I found pyrex has a __Pyx_GetStarAr gs -
is there something I'm missing from the regular C/API maybe using one
of the PyArg_Parse.. calls ?
Thanks,
M.
similar to python
func(*args, **kwds)
What's a neat way to do that?
I found pyrex has a __Pyx_GetStarAr gs -
is there something I'm missing from the regular C/API maybe using one
of the PyArg_Parse.. calls ?
Thanks,
M.
Comment