diff --git a/Python/marshal.c b/Python/marshal.c index 1962f924ff3..ff8247c9f23 100644 --- a/Python/marshal.c +++ b/Python/marshal.c @@ -1035,6 +1035,7 @@ marshal_dump(PyObject *self, PyObject *args) wf.error = 0; wf.depth = 0; wf.strings = (version > 0) ? PyDict_New() : 0; + wf.version = version; w_object(x, &wf); Py_XDECREF(wf.strings); if (wf.error) {