This question is a follow-up to my previous question, where I tried to compile python-yenc for Python3. After being told there wasn't a quick fix, I decided to take up the challange and rewrite it completely.
The only thing I can't figure out is how to use PyArg_ParseTupleAndKeywords with io-objects. Here is the relevant code:
PyObject *in_file, *out_file;
static char *kwlist[] = { "infile", "outfile", NULL };
if(!PyArg_ParseTupleAndKeywords(args, kwds, "O!O!|l", kwlist,\
&PyBytes_Type, &in_file,\
&PyBytes_Type, &out_file,\
&bytes)) return NULL;
which obviously yields
Traceback (most recent call last):
File "test.py", line 21, in <module>
print(_yenc.decode_file(b), outfile=o)
TypeError: argument 1 must be bytes, not _io.BufferedReader
How can I pass _io.BufferedReader-objects to my function?
Thanks, Martijn