-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Official support for python 3.12 and code clean-up after EOLed Python…
… 3.6 and 3.7. (#517) Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
- Loading branch information
Showing
69 changed files
with
1,021 additions
and
1,565 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,15 @@ | ||
from cloudpickle.cloudpickle import * # noqa | ||
from cloudpickle.cloudpickle_fast import CloudPickler, dumps, dump # noqa | ||
|
||
# Conform to the convention used by python serialization libraries, which | ||
# expose their Pickler subclass at top-level under the "Pickler" name. | ||
Pickler = CloudPickler | ||
__version__ = "3.0.0.dev0" | ||
|
||
__version__ = '2.3.0.dev0' | ||
__all__ = [ # noqa | ||
"__version__", | ||
"Pickler", | ||
"CloudPickler", | ||
"dumps", | ||
"loads", | ||
"dump", | ||
"load", | ||
"register_pickle_by_value", | ||
"unregister_pickle_by_value", | ||
] |
Oops, something went wrong.