Different in Py2 and Py3

Pickle module

1
2
3
4
5
import sys
if sys.version_info[0]<3:
import cPickle as pickle
else
import _pickle as pickle