Skip to content

Commit 90d6658

Browse files
committed
Black
1 parent c6f8cd4 commit 90d6658

File tree

8 files changed

+623
-510
lines changed

8 files changed

+623
-510
lines changed

CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
- Fix a bug affecting cloudpickle when non-modules objects are added into
141141
sys.modules
142142
([PR #326](https://github.com/cloudpipe/cloudpickle/pull/326)).
143-
143+
144144
- Fix a regression in cloudpickle and python3.8 causing an error when trying to
145145
pickle property objects.
146146
([PR #329](https://github.com/cloudpipe/cloudpickle/pull/329)).

cloudpickle/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
from cloudpickle.cloudpickle import * # noqa
1+
from . import cloudpickle
2+
from .cloudpickle import * # noqa
3+
4+
__doc__ = cloudpickle.__doc__
25

36
__version__ = "3.0.0.dev0"
47

0 commit comments

Comments
 (0)