summaryrefslogtreecommitdiffstats
path: root/Include/marshal.h
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2003-03-06 22:04:24 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2003-03-06 22:04:24 (GMT)
commit1930949a8aa2e5e2d220857a18ac5e1ebd03b750 (patch)
tree19484dcdf8eb19c55cceefaaddf5c7dae527ab4d /Include/marshal.h
parentbd836dfba3fd0d86807196c4049e998a4b9b9b92 (diff)
downloadcpython-1930949a8aa2e5e2d220857a18ac5e1ebd03b750.zip
cpython-1930949a8aa2e5e2d220857a18ac5e1ebd03b750.tar.gz
cpython-1930949a8aa2e5e2d220857a18ac5e1ebd03b750.tar.bz2
Fix SF bug #697256, PyMarshal_WriteShortToFile() documented, but not implemented
Remove prototype and doc. Backport candidate.
Diffstat (limited to 'Include/marshal.h')
-rw-r--r--Include/marshal.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/marshal.h b/Include/marshal.h
index cc73f23..f123093 100644
--- a/Include/marshal.h
+++ b/Include/marshal.h
@@ -8,7 +8,6 @@ extern "C" {
#endif
PyAPI_FUNC(void) PyMarshal_WriteLongToFile(long, FILE *);
-PyAPI_FUNC(void) PyMarshal_WriteShortToFile(int, FILE *);
PyAPI_FUNC(void) PyMarshal_WriteObjectToFile(PyObject *, FILE *);
PyAPI_FUNC(PyObject *) PyMarshal_WriteObjectToString(PyObject *);