Skip to content

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

@nedbat

Description

@nedbat

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)

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions