Viewing File: /home/ubuntu/combine_ai/combine/lib/python3.10/site-packages/numba/cloudpickle/cloudpickle_fast.py

"""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)
Back to Directory File Manager