issue #477: Python3 does not have Pickler.dispatch.

issue510
David Wilson 6 years ago
parent 7ecd5d8ba3
commit 4c1ddf6fc1

@ -582,8 +582,9 @@ class Py24Pickler(py_pickle.Pickler):
else:
py_pickle.Pickler.save_inst(self, obj)
dispatch = py_pickle.Pickler.dispatch.copy()
dispatch[py_pickle.InstanceType] = save_exc_inst
if PY24:
dispatch = py_pickle.Pickler.dispatch.copy()
dispatch[py_pickle.InstanceType] = save_exc_inst
if PY3:

Loading…
Cancel
Save