@@ -113,7 +113,7 @@ PyAPI_FUNC(size_t) _PyLong_NumBits(PyObject *v);
113113PyAPI_FUNC (PyObject * ) _PyLong_DivmodNear (PyObject * , PyObject * );
114114
115115/* _PyLong_FromByteArray: View the n unsigned bytes as a binary integer in
116- base 256, and return a Python long with the same numeric value.
116+ base 256, and return a Python int with the same numeric value.
117117 If n is 0, the integer is 0. Else:
118118 If little_endian is 1/true, bytes[n-1] is the MSB and bytes[0] the LSB;
119119 else (little_endian is 0/false) bytes[0] is the MSB and bytes[n-1] the
@@ -123,7 +123,7 @@ PyAPI_FUNC(PyObject *) _PyLong_DivmodNear(PyObject *, PyObject *);
123123 non-negative if bit 0x80 of the MSB is clear, negative if set.
124124 Error returns:
125125 + Return NULL with the appropriate exception set if there's not
126- enough memory to create the Python long .
126+ enough memory to create the Python int .
127127*/
128128PyAPI_FUNC (PyObject * ) _PyLong_FromByteArray (
129129 const unsigned char * bytes , size_t n ,
@@ -173,7 +173,7 @@ PyAPI_FUNC(int) _PyLong_FormatAdvancedWriter(
173173 Py_ssize_t end );
174174#endif /* Py_LIMITED_API */
175175
176- /* These aren't really part of the long object, but they're handy. The
176+ /* These aren't really part of the int object, but they're handy. The
177177 functions are in Python/mystrtoul.c.
178178 */
179179PyAPI_FUNC (unsigned long ) PyOS_strtoul (char * , char * * , int );
0 commit comments