@@ -126,7 +126,7 @@ PyAPI_FUNC(size_t) _PyLong_NumBits(PyObject *v);
126126PyAPI_FUNC (PyObject * ) _PyLong_DivmodNear (PyObject * , PyObject * );
127127
128128/* _PyLong_FromByteArray: View the n unsigned bytes as a binary integer in
129- base 256, and return a Python long with the same numeric value.
129+ base 256, and return a Python int with the same numeric value.
130130 If n is 0, the integer is 0. Else:
131131 If little_endian is 1/true, bytes[n-1] is the MSB and bytes[0] the LSB;
132132 else (little_endian is 0/false) bytes[0] is the MSB and bytes[n-1] the
@@ -136,7 +136,7 @@ PyAPI_FUNC(PyObject *) _PyLong_DivmodNear(PyObject *, PyObject *);
136136 non-negative if bit 0x80 of the MSB is clear, negative if set.
137137 Error returns:
138138 + Return NULL with the appropriate exception set if there's not
139- enough memory to create the Python long .
139+ enough memory to create the Python int .
140140*/
141141PyAPI_FUNC (PyObject * ) _PyLong_FromByteArray (
142142 const unsigned char * bytes , size_t n ,
@@ -186,7 +186,7 @@ PyAPI_FUNC(int) _PyLong_FormatAdvancedWriter(
186186 Py_ssize_t end );
187187#endif /* Py_LIMITED_API */
188188
189- /* These aren't really part of the long object, but they're handy. The
189+ /* These aren't really part of the int object, but they're handy. The
190190 functions are in Python/mystrtoul.c.
191191 */
192192PyAPI_FUNC (unsigned long ) PyOS_strtoul (char * , char * * , int );
0 commit comments