env-full / lib /python3.12 /site-packages /cloudpickle /cloudpickle_fast.py
ZhengyangZhang's picture
Add files using upload-large-folder tool
6a31876 verified
Raw
History Blame Contribute Delete
323 Bytes
"""Compatibility module.
It can be necessary to load files generated by previous versions of cloudpickle
that rely on symbols being defined under the `cloudpickle.cloudpickle_fast`
namespace.
See: tests/test_backward_compat.py
"""
from . import cloudpickle
def __getattr__(name):
return getattr(cloudpickle, name)