summaryrefslogtreecommitdiff
path: root/Include/marshal.h
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-10-12 22:25:39 +0200
committerAntoine Pitrou <solipsis@pitrou.net>2013-10-12 22:25:39 +0200
commit455b2baf5e22aa32947e4e3096284046a6644f76 (patch)
treedace93ff5d2ed5df98ac86ff1b458b0fec91b348 /Include/marshal.h
parent69114473c4520966659e2ef6023b2f57fbdf1861 (diff)
downloadcpython-455b2baf5e22aa32947e4e3096284046a6644f76.tar.gz
Issue #19219: Speed up marshal.loads(), and make pyc files slightly (5% to 10%) smaller.
Diffstat (limited to 'Include/marshal.h')
-rw-r--r--Include/marshal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/marshal.h b/Include/marshal.h
index 0c69655cf2..77d9c5eec3 100644
--- a/Include/marshal.h
+++ b/Include/marshal.h
@@ -7,7 +7,7 @@
extern "C" {
#endif
-#define Py_MARSHAL_VERSION 3
+#define Py_MARSHAL_VERSION 4
PyAPI_FUNC(void) PyMarshal_WriteLongToFile(long, FILE *, int);
PyAPI_FUNC(void) PyMarshal_WriteObjectToFile(PyObject *, FILE *, int);