Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.9/dist-packages/numba/cloudpickle/cloudpickle_fast.py: 0%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

3 statements  

1"""Compatibility module. 

2 

3It can be necessary to load files generated by previous versions of cloudpickle 

4that rely on symbols being defined under the `cloudpickle.cloudpickle_fast` 

5namespace. 

6 

7See: tests/test_backward_compat.py 

8""" 

9from . import cloudpickle 

10 

11 

12def __getattr__(name): 

13 return getattr(cloudpickle, name)