second commit
This commit is contained in:
11
env/lib/python3.11/site-packages/future/moves/pickle.py
vendored
Normal file
11
env/lib/python3.11/site-packages/future/moves/pickle.py
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
from __future__ import absolute_import
|
||||
from future.utils import PY3
|
||||
|
||||
if PY3:
|
||||
from pickle import *
|
||||
else:
|
||||
__future_module__ = True
|
||||
try:
|
||||
from cPickle import *
|
||||
except ImportError:
|
||||
from pickle import *
|
Reference in New Issue
Block a user