There was an error while loading. Please reload this page.
1 parent bd836df commit 1930949Copy full SHA for 1930949
2 files changed
Doc/api/utilities.tex
@@ -289,12 +289,6 @@ \section{Data marshalling support \label{marshalling-utils}}
289
regardless of the size of the native \ctype{long} type.
290
\end{cfuncdesc}
291
292
-\begin{cfuncdesc}{void}{PyMarshal_WriteShortToFile}{short value, FILE *file}
293
- Marshal a \ctype{short} integer, \var{value}, to \var{file}. This
294
- will only write the least-significant 16 bits of \var{value};
295
- regardless of the size of the native \ctype{short} type.
296
-\end{cfuncdesc}
297
-
298
\begin{cfuncdesc}{void}{PyMarshal_WriteObjectToFile}{PyObject *value,
299
FILE *file}
300
Marshal a Python object, \var{value}, to \var{file}.
Include/marshal.h
@@ -8,7 +8,6 @@ extern "C" {
8
#endif
9
10
PyAPI_FUNC(void) PyMarshal_WriteLongToFile(long, FILE *);
11
-PyAPI_FUNC(void) PyMarshal_WriteShortToFile(int, FILE *);
12
PyAPI_FUNC(void) PyMarshal_WriteObjectToFile(PyObject *, FILE *);
13
PyAPI_FUNC(PyObject *) PyMarshal_WriteObjectToString(PyObject *);
14
0 commit comments