-
-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PicklingError when using cotyledon on win64 #11
Comments
To support windows all objects passed to children process must support Pickle. Your application seems the pass some argparse objects to children. More generally master process should do a very minimal works. |
I 'm guessing identity is this one: https://github.com/python/cpython/blob/master/Lib/argparse.py#L1638 |
Thank you! I did a search for argparse in my project and only one component uses it: pbr. I think I will ask them about it or see if anyone has filed an issue. |
@jdandrea how to solve this problem on win64? |
Whoops, I'm now at a loss as to how the case was cracked (and why on earth nothing was mentioned herein). I will go ISO answers and, hopefully, report back. |
@jacobluo A patch has merged for pbr that I hope resolves this issue. |
Unsure how to proceed/mitigate this one. I normally run on Ubuntu or macOS. First time we're trying on win64 (developer workstation).
It seems to originate with a call from cotyledon, but I don't see any reference to
identity
in the cotyledon source, nor in my own project. Thoughts welcomed!The text was updated successfully, but these errors were encountered: