-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deduplicate cloudpickle reducers. (#368)
Co-authored-by: jakirkham <[email protected]> Co-authored-by: Olivier Grisel <[email protected]>
- Loading branch information
1 parent
9518ae3
commit 938553f
Showing
42 changed files
with
614 additions
and
760 deletions.
There are no files selected for viewing
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,11 +1,7 @@ | ||
from __future__ import absolute_import | ||
|
||
import sys | ||
import pickle | ||
|
||
|
||
from cloudpickle.cloudpickle import * | ||
if sys.version_info[:2] >= (3, 8): | ||
from cloudpickle.cloudpickle_fast import CloudPickler, dumps, dump | ||
from cloudpickle.cloudpickle import * # noqa | ||
from cloudpickle.cloudpickle_fast import CloudPickler, dumps, dump # noqa | ||
|
||
__version__ = '1.5.0dev0' |
Oops, something went wrong.