From ef78529e8620dd6f16f5072cd1e9290541188bec Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Wed, 16 Nov 2005 05:04:51 +0000 Subject: version was not initialized properly --- Python/marshal.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Python/marshal.c b/Python/marshal.c index 1962f92..ff8247c 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) { -- cgit v0.12