Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

First off I'm not expecting a solution, just hoping for some pointers on how to start.

I've got a C program with an embedded Python interpreter. The Python scripts the program uses as input obviously refer to the C-defined objects and functions. I'd now like to make some of these objects pickleable.

The pickle docs describe how extension types can be made picklable using __reduce__. But this is a Python method - how would I define this in the underlying PyObject?

Fairly sure I'm mis-understanding something...

share|improve this question

1 Answer

up vote 3 down vote accepted

The pickle module comes in both a python-only and a C variant (called cPickle). As such, the __reduce__ method needs to be callable from Python code.

Thus, you need to provide a __reduce__ entry in your C object PyMethodDef struct with a suitable implementation.

Alternatively, you can also register a pickling function with the copy_reg module. This module's original usecase was to support extension modules better; the source code for the module states:

This is only useful to add pickle support for extension types defined in C, not for instances of user-defined classes.

share|improve this answer
Ah ha, thank you that sheds some light!So assuming I've got a C object "MyObj" which already has a static PyMethodDef MyObj [] struct, if I add an entry "__reduce__" pointing to a C function, will this be callable from both Pickle and cPickle? – lost Sep 21 '12 at 12:31
Exactly. The cPickle module looks up the method via PyObject_GetAttr(). – Martijn Pieters Sep 21 '12 at 12:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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