Re: PyArg_ParseTuple help

2005-07-10 Thread Qiangning Hong
[EMAIL PROTECTED] wrote: > hello all, > how to parse the arguments of a c function with PyArg_ParseTuple? > The prototype of the c function is : > int func(unsigned char * in , int inlen, unsigned char * v, unsigned > char * out, int * outlen); > > The problem is , when the func returns, ther

PyArg_ParseTuple help

2005-07-10 Thread zyqnews
hello all, how to parse the arguments of a c function with PyArg_ParseTuple? The prototype of the c function is : int func(unsigned char * in , int inlen, unsigned char * v, unsigned char * out, int * outlen); The problem is , when the func returns, there will be results in out and outlen. Is