ai-content-maker/.venv/Lib/site-packages/joblib/externals/cloudpickle/cloudpickle_fast.py

14 lines
322 B
Python
Raw Permalink Normal View History

2024-05-03 04:18:51 +03:00
"""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)