Force a pickling protocol that will accept certain awkward classes.

This commit is contained in:
Josh Matthews 2019-03-03 10:33:49 -05:00
parent fe1663a9f2
commit 6186cb465d
2 changed files with 2 additions and 2 deletions

View file

@ -683466,7 +683466,7 @@
"support"
],
"tools/wptrunner/wptrunner/update/state.py": [
"dc459da7e2e5a6b5dfd088b711e4fa9c7d693af9",
"3a97618effdbf13c22ac422a6f5e4bbae65643bd",
"support"
],
"tools/wptrunner/wptrunner/update/sync.py": [

View file

@ -69,7 +69,7 @@ class State(object):
def save(self):
"""Write the state to disk"""
with open(self.filename, "w") as f:
pickle.dump(self, f)
pickle.dump(self, f, 2)
def is_empty(self):
return len(self._data) == 1 and self._data[0] == {}