-
-
Notifications
You must be signed in to change notification settings - Fork 181
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
PickleWarning thrown when pickling ArrayInstance #455
Comments
ping: @anivegesana |
I believe that this is expected behavior. I just ran the following code snippet on dill 0.3.4 and it gives the following error: import ctypes, dill
dill.dumps(ctypes.c_char(b'8'))
I don't think pickling ctypes via dill is supported on pypy. Let me know if I am missing something. |
Ah... sorry my bad. I recently ended support for 3.6 (see #452), and thus is using an older build than the other pypy above. pypy3.6 fails, but doesn't throw the warning... but that's because it's testing against an older build. So, yes, this issue should be voided. It's a bit weird to see that dumping a |
Warnings are thrown when pickling an ArrayInstance, however it appears that the ArrayInstance does pickle.
SEEN WITH:
NOT WITH:
The text was updated successfully, but these errors were encountered: