Tagged Questions
The pybuffer tag has no wiki summary.
2
votes
2answers
290 views
Access contents of PyBuffer from C
I have created a buffer object in python like so:
f = io.open('some_file', 'rb')
byte_stream = buffer(f.read(4096))
I'm now passing byte_stream as a parameter to a C function, through SWIG. I have ...
0
votes
1answer
443 views
Creating a PyBuffer from a C struct
EDIT: Upon re-reading my original question I realized very quickly that it was very poorly worded, ambiguous, and too confusing to ever get a decent answer. That's what I get for rushing out a ...