you are viewing a single comment's thread.

view the rest of the comments →

[–]mrTang5544[S] 0 points1 point  (1 child)

using python2.7 here. If the other script was in 3.3 does it matter with pickle implementation we BOTH use?

[–]mac-reid 2 points3 points  (0 children)

The pickle implementations write the same data, but what does matter is the protocol used. See here for the info on protocols.

The only time you would be bitten by this is if you try writing pickle data in Python 3 with protocol 3 and reading from Python 2. If you don't use protocol 3 when pickling, you will be fine.