You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I understand correctly, apparently since python 3.0pickle/cpickle is just pickle.
A common pattern in Python 2.x is to have one version of a module implemented in pure Python, with an optional accelerated version implemented as a C extension; for example, pickle and cPickle. This places the burden of importing the accelerated version and falling back on the pure Python version on each user of these modules. In Python 3.0, the accelerated versions are considered implementation details of the pure Python versions. Users should always import the standard version, which attempts to import the accelerated version and falls back to the pure Python version. The pickle / cPickle pair received this treatment.
If I understand correctly, apparently since python 3.0
pickle
/cpickle
is justpickle
.So these lines
ProperImage/properimage/operations.py
Lines 37 to 40 in 44a3af6
Should be just
The text was updated successfully, but these errors were encountered: