Skip to content
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

html.py doesn't specify pickle protocol version #287

Closed
nedbat opened this issue Feb 17, 2014 · 1 comment
Closed

html.py doesn't specify pickle protocol version #287

nedbat opened this issue Feb 17, 2014 · 1 comment
Labels
bug Something isn't working

Comments

@nedbat
Copy link
Owner

nedbat commented Feb 17, 2014

Originally reported by Anonymous


html.py contains

#!python

pickle.dump(status, fout)

which outputs version 3 data under python3, which then cannot be read under python2.x

Should be:

#!python

pickle.dump(status, fout, 2)

@nedbat
Copy link
Owner Author

nedbat commented Apr 25, 2015

The status.dat file is now a JSON file.

@nedbat nedbat closed this as completed Apr 25, 2015
@nedbat nedbat added minor bug Something isn't working labels Jun 23, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant