summaryrefslogtreecommitdiff
path: root/Include/marshal.h
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2003-03-06 22:04:24 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2003-03-06 22:04:24 +0000
commit535d957578c37abeff8f0bcd072bd1a9e18a29c3 (patch)
tree0c779bf8eb56b25f011bb497d4b43ea5169f5be6 /Include/marshal.h
parentc7846b11f23c7af08c9aef7b5cd82505b2df9a7c (diff)
downloadcpython-535d957578c37abeff8f0bcd072bd1a9e18a29c3.tar.gz
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 cc73f23c1a..f12309371b 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 *);