일단 커밋. 오랫동안 커밋을 안해서 꼬였다.
리팩토리 중.
This commit is contained in:
18
.venv/lib/python3.12/site-packages/cloudpickle/__init__.py
Normal file
18
.venv/lib/python3.12/site-packages/cloudpickle/__init__.py
Normal file
@@ -0,0 +1,18 @@
|
||||
from . import cloudpickle
|
||||
from .cloudpickle import * # noqa
|
||||
|
||||
__doc__ = cloudpickle.__doc__
|
||||
|
||||
__version__ = "3.0.0"
|
||||
|
||||
__all__ = [ # noqa
|
||||
"__version__",
|
||||
"Pickler",
|
||||
"CloudPickler",
|
||||
"dumps",
|
||||
"loads",
|
||||
"dump",
|
||||
"load",
|
||||
"register_pickle_by_value",
|
||||
"unregister_pickle_by_value",
|
||||
]
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
1487
.venv/lib/python3.12/site-packages/cloudpickle/cloudpickle.py
Normal file
1487
.venv/lib/python3.12/site-packages/cloudpickle/cloudpickle.py
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,13 @@
|
||||
"""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)
|
||||
Reference in New Issue
Block a user