PyArg_ParseTuple() & Py_DECREF()

rwgk at my-deja.com rwgk at my-deja.com
Tue Mar 7 22:36:33 EST 2000


For the records: The answer is actually here:
http://www.python.org/doc/current/ext/parseTuple.html
I am not sure why I missed it before.
Ralf


In article <89ph17$7si$1 at nnrp1.deja.com>,
  rwgk at my-deja.com wrote:
> Consider the following two lines of source code at the
> beginning of a C extension function:
>
>   PyObject *O;
>   if (! PyArg_ParseTuple(args, "O", &O)) return NULL;
>
> Is it necessary to call Py_DECREF(O) before leaving the
> extension function?
>
> Thanks!
>         Ralf
>
> Sent via Deja.com http://www.deja.com/
> Before you buy.
>


Sent via Deja.com http://www.deja.com/
Before you buy.



More information about the Python-list mailing list