Example (builtinmodule.c):

static PyObject *
builtin___import__(PyObject *self, PyObject *args, PyObject *kwds)
{
    ...
}

How do I go about getting the arguments, args, in string format? I believe it would be similar to finding the name of a function (if a callable PyObject was a function: PyString_AsString(PyObject_GetAttrString(func, "__name__"))), but I don't know what attributes to look for in the args.

link|improve this question

2  
Have a look at the very first page of the documentation on C extension for Python. – Sven Marnach Jun 9 '11 at 18:43
feedback

1 Answer

up vote 2 down vote accepted

The easiest thing to do is just get the repr of the object, since it's a tuple.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.