We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d719f11 commit 618f632Copy full SHA for 618f632
CHANGES.md
@@ -5,6 +5,9 @@
5
reference to a dynamically defined class from the `__main__` module.
6
([issue #131]( https://github.com/cloudpipe/cloudpickle/issues/131)).
7
8
+- Fixed a crash in Python 2 when serializing non-hashable instancemethods of built-in
9
+ types. ([issue #144](https://github.com/cloudpipe/cloudpickle/issues/144))
10
+
11
0.4.2
12
=====
13
cloudpickle/__init__.py
@@ -2,4 +2,4 @@
2
3
from cloudpickle.cloudpickle import *
4
-__version__ = '0.4.1'
+__version__ = '0.4.3'
setup.py
@@ -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',
14
author_email='[email protected]',
0 commit comments