-
Notifications
You must be signed in to change notification settings - Fork 53
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
problem with pickle #193
Comments
I think the following happens after unpickling
If you try with def load_xvg(filepath, failsafe=2):
xvg_file = gmx.XVG(savedata=True)
xvg_file.read(filepath)
return xvg_file then does the same problem appear? I would think not because in this case, the array itself would be included in the pickle file (which might make it big) and the re-reading from disk won't be triggered. |
@PolyachenkoYA I am sorry that I haven't replied to this issue sooner. Please feel free to ping me with @orbeckst when you open another issue or PR: create the issue, then add a comment with "can you please have a look @orbeckst " ... and then I get at least a notification. Otherwise it's too difficult to keep track of every open source project that I have code in. Thank you!! ❤️ |
There hasn't been any activity here – can we close this one out @orbeckst? |
I don't really know if that's something that needs to be changed or just documented. |
The problem:
.names
doubles after interacting withpickle
,cPickle
anddill
.How to reproduce (test.txt):
gives
So, something wrong happens on the stage of either dumping or loading. It's also the case for
cPickle
anddill
libs.The text was updated successfully, but these errors were encountered: