@@ -43,7 +43,7 @@ The following functions allow marshalled values to be read back in.
43
43
44
44
.. c :function :: long PyMarshal_ReadLongFromFile (FILE *file)
45
45
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
47
47
for reading. Only a 32-bit value can be read in using this function,
48
48
regardless of the native size of :c:type: `long `.
49
49
@@ -53,7 +53,7 @@ The following functions allow marshalled values to be read back in.
53
53
54
54
.. c:function:: int PyMarshal_ReadShortFromFile(FILE *file)
55
55
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
57
57
for reading. Only a 16-bit value can be read in using this function,
58
58
regardless of the native size of :c:type: `short `.
59
59
@@ -63,7 +63,7 @@ The following functions allow marshalled values to be read back in.
63
63
64
64
.. c:function:: PyObject* PyMarshal_ReadObjectFromFile(FILE *file)
65
65
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
67
67
reading.
68
68
69
69
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.
72
72
73
73
.. c:function:: PyObject* PyMarshal_ReadLastObjectFromFile(FILE *file)
74
74
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
76
76
reading. Unlike :c:func: `PyMarshal_ReadObjectFromFile `, this function
77
77
assumes that no further objects will be read from the file, allowing it to
78
78
aggressively load file data into memory so that the de-serialization can
0 commit comments