Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

compatibility between CPython and IronPython cPickle

I was wondering whether objects serialized using CPython's cPickle are readable by using IronPython's cPickle; the objects in question do not require any modules outside of the built-ins that both Cpython and IronPython include. Thank you!

like image 333
JustOnePixel Avatar asked Nov 06 '22 08:11

JustOnePixel


1 Answers

If you use the default protocol (0) which is text based, then things should work. I'm not sure what will happen if you use a higher protocol. It's very easy to test this ...

like image 79
lazy1 Avatar answered Nov 09 '22 02:11

lazy1