Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
getdaft / pickle / compat.py
Size: Mime:
"""
Taken from: https://github.com/cloudpipe/cloudpickle/blob/master/cloudpickle/compat.py
"""

from __future__ import annotations

import pickle  # noqa: F401

# Pickler will the C implementation in CPython and the Python
# implementation in PyPy
from pickle import Pickler  # noqa: F401