@@ -43,7 +43,7 @@ The following functions allow marshalled values to be read back in.
4343
4444.. c :function :: long PyMarshal_ReadLongFromFile (FILE *file)
4545
46- Return a C :c:type: `long ` from the data stream in a :c:type : `FILE* ` opened
46+ Return a C :c:type: `long ` from the data stream in a :c:expr : `FILE* ` opened
4747 for reading. Only a 32-bit value can be read in using this function,
4848 regardless of the native size of :c:type: `long `.
4949
@@ -53,7 +53,7 @@ The following functions allow marshalled values to be read back in.
5353
5454.. c:function:: int PyMarshal_ReadShortFromFile(FILE *file)
5555
56- Return a C :c:type: `short ` from the data stream in a :c:type : `FILE* ` opened
56+ Return a C :c:type: `short ` from the data stream in a :c:expr : `FILE* ` opened
5757 for reading. Only a 16-bit value can be read in using this function,
5858 regardless of the native size of :c:type: `short `.
5959
@@ -63,7 +63,7 @@ The following functions allow marshalled values to be read back in.
6363
6464.. c:function:: PyObject* PyMarshal_ReadObjectFromFile(FILE *file)
6565
66- Return a Python object from the data stream in a :c:type : `FILE* ` opened for
66+ Return a Python object from the data stream in a :c:expr : `FILE* ` opened for
6767 reading.
6868
6969 On error, sets the appropriate exception (:exc: `EOFError `, :exc: `ValueError `
@@ -72,7 +72,7 @@ The following functions allow marshalled values to be read back in.
7272
7373.. c:function:: PyObject* PyMarshal_ReadLastObjectFromFile(FILE *file)
7474
75- Return a Python object from the data stream in a :c:type : `FILE* ` opened for
75+ Return a Python object from the data stream in a :c:expr : `FILE* ` opened for
7676 reading. Unlike :c:func: `PyMarshal_ReadObjectFromFile `, this function
7777 assumes that no further objects will be read from the file, allowing it to
7878 aggressively load file data into memory so that the de-serialization can
0 commit comments