Uh oh!
There was an error while loading. Please reload this page.
BUG: Handle instance methods of builtin types. - #145
Conversation
Fixes a crash in Python 2 when serializing non-hashable instancemethods of built-in types.
Codecov Report
@@ Coverage Diff @@## master #145 +/- ##
==========================================
+ Coverage 83.79% 83.91% +0.11%
==========================================
Files 1 1 Lines 537 541 +4 Branches 98 98 ==========================================
+ Hits 450 454 +4
Misses 63 63 Partials 24 24
Continue to review full report at Codecov.
|
llllllllll
commented
Dec 28, 2017
lgtm! |
mrocklin
commented
Dec 28, 2017
via email
Thanks for identifying and fixing this Scott! …On Wed, Dec 27, 2017 at 10:30 PM, Joe Jevnik ***@***.***> wrote:
lgtm!
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#145 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AASszDN3zFNmlARGGupa1W52tlpuhchmks5tEzVxgaJpZM4ROCHK>
.
|
HyukjinKwon
commented
Jan 29, 2018
Hi all, while Apache Spark is trying to match the cloudpickle copy in Apache Spark to 0.4.2v, for now, I found this bug fix, which seems introduced from #113. Seems 0.4.2v has this issue - Do we have a kind of backporting policy here? If we have, I would like to suggest to backport this, if I understood correctly. If there is no for now, let me just suggest to port this patch alone into PySpark's cloudpickle copy. |
HyukjinKwon
commented
Jan 30, 2018
I can push a branch "0.4.x" here and help backporting bugs in this repo as I believe I would be in this affair for a while. Please let me know if you guys are interested in this, or I missed previous discussion about this. |
rgbkrk
commented
Feb 1, 2018
We'd be happy to have maintenance on branches, so if you're willing to take up the mantle that's ok @HyukjinKwon. |
HyukjinKwon
commented
Feb 2, 2018
Ah, thank you so much 👍 . Let me try it on this weekend. |
HyukjinKwon
commented
Feb 5, 2018
I have just pushed branch called "0.4.x" after checking out to v0.4.2 - https://github.com/cloudpipe/cloudpickle/tree/0.4.x. Will open few PRs against this branch. |
Fixes a crash in Python 2 when serializing non-hashable instancemethods
of built-in types.
Fixes#144.