summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorKristján Valur Jónsson <sweskman@gmail.com>2013-03-20 01:02:10 (GMT)
committerKristján Valur Jónsson <sweskman@gmail.com>2013-03-20 01:02:10 (GMT)
commitd7009c69136a3809282804f460902ab42e9972f6 (patch)
tree4d63e0482a090ede2c41c6a8f347418665e93072 /Include
parentc7c42efb16612f66af266073937cffa99ad49a33 (diff)
downloadcpython-d7009c69136a3809282804f460902ab42e9972f6.zip
cpython-d7009c69136a3809282804f460902ab42e9972f6.tar.gz
cpython-d7009c69136a3809282804f460902ab42e9972f6.tar.bz2
Issue #16475: Support object instancing, recursion and interned strings
in marshal
Diffstat (limited to 'Include')
-rw-r--r--Include/marshal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/marshal.h b/Include/marshal.h
index e96d062..0c69655 100644
--- a/Include/marshal.h
+++ b/Include/marshal.h
@@ -7,7 +7,7 @@
extern "C" {
#endif
-#define Py_MARSHAL_VERSION 2
+#define Py_MARSHAL_VERSION 3
PyAPI_FUNC(void) PyMarshal_WriteLongToFile(long, FILE *, int);
PyAPI_FUNC(void) PyMarshal_WriteObjectToFile(PyObject *, FILE *, int);