Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
reference to a dynamically defined class from the `__main__` module.
([issue #131]( https://github.com/cloudpipe/cloudpickle/issues/131)).

- Fixed a crash in Python 2 when serializing non-hashable instancemethods of built-in
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was backported in #154

types. ([issue #144](https://github.com/cloudpipe/cloudpickle/issues/144))

0.4.2
=====

Expand Down
2 changes: 1 addition & 1 deletion cloudpickle/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

from cloudpickle.cloudpickle import *

__version__ = '0.4.1'
__version__ = '0.4.3'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

dist = setup(
name='cloudpickle',
version='0.4.2',
version='0.4.3',
description='Extended pickling support for Python objects',
author='Cloudpipe',
author_email='[email protected]',
Expand Down