There is no cPickle in Python 3. Just import pickle. pickle will automatically use the C accelerator.
try import pickle as cPickle. this way you don’t have to edit much
by James Palmer
There is no cPickle in Python 3. Just import pickle. pickle will automatically use the C accelerator.
try import pickle as cPickle. this way you don’t have to edit much