I am debugging Python source code (CPython 3.4). I'm receiving a PyObject*. I would like to printf
it.
For example (from Objects/floatobject.c of Python 3.4 source code):
PyObject *o_ndigits = NULL;
Py_ssize_t ndigits;
x = PyFloat_AsDouble(v);
if (!PyArg_ParseTuple(args, "|O", &o_ndigits))
return NULL;
How do I printf
o_ndigits? It is almost same as this question: Python: get string representation of PyObject?, but for Python3. With original solution, I got "undefined reference to PyString_AsString"
error.
Both
PyObject_Repr
andPyObject_ASCII
return a unicodestr
representation of the object. If your terminal doesn't use UTF-8, you probably want the ASCII escaped representation. Get the multibyte string withPyUnicode_AsUTF8
orPyUnicode_AsUTF8AndSize
. The new implementation in 3.3 caches the UTF-8 byte string, so don't deallocate it after printing.As to
PyString_AsString
, that becamePyBytes_AsString
orPyBytes_AS_STRING
for the 3.xbytes
type.