Re: Does pickled objects work fine between different OS?

2010-05-26 Thread Grant Edwards
On 2010-05-26, Oltmans wrote: > If I dump a Python dictionary into a file named "data.pkl" using > Pickle module on a Linux operating system, will the data contained in > "data.pkl" load fine in a Windows OS? That depends on the data and the version of Python. Older versions didn't handle some

Re: Does pickled objects work fine between different OS?

2010-05-26 Thread Ross Ridge
Oltmans wrote: >If I dump a Python dictionary into a file named "data.pkl" using >Pickle module on a Linux operating system, will the data contained in >"data.pkl" load fine in a Windows OS? I mean will I be able to load >the dictionary data contained in "data.pkl" just fine on Windows XP? That

Re: Does pickled objects work fine between different OS?

2010-05-26 Thread Daniel Fetchinson
> If I dump a Python dictionary into a file named "data.pkl" using > Pickle module on a Linux operating system, will the data contained in > "data.pkl" load fine in a Windows OS? Yes. > I mean will I be able to load the dictionary data contained in "data.pkl" > just fine on Windows XP? Yes. Che

Does pickled objects work fine between different OS?

2010-05-26 Thread Oltmans
If I dump a Python dictionary into a file named "data.pkl" using Pickle module on a Linux operating system, will the data contained in "data.pkl" load fine in a Windows OS? I mean will I be able to load the dictionary data contained in "data.pkl" just fine on Windows XP? I could have tested it but