On Wed, 2005-12-14 at 12:00, [EMAIL PROTECTED] wrote:
> essentially I already use PyArg_ParseTupleAndKeywords, but that seems
> to emulate fixed arg list definitions like - 
>    func (x,y,t=0,u=1)

It's unclear what you are actually trying to accomplish. My guess is
that you want to implement a function/method that takes any number of
arbitrarily named keyword arguments. If that is the case, you can simply
use the dictionary that is passed to your C function as the third
argument.

Hope this helps,

Carsten.

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to