@@ -12,7 +12,7 @@ typedef struct _longobject PyLongObject; /* Revealed in longintrepr.h */
1212PyAPI_DATA (PyTypeObject ) PyLong_Type ;
1313
1414#define PyLong_Check (op ) \
15- PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
15+ PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
1616#define PyLong_CheckExact (op ) (Py_TYPE(op) == &PyLong_Type)
1717
1818PyAPI_FUNC (PyObject * ) PyLong_FromLong (long );
@@ -122,8 +122,8 @@ PyAPI_FUNC(PyObject *) _PyLong_DivmodNear(PyObject *, PyObject *);
122122 enough memory to create the Python long.
123123*/
124124PyAPI_FUNC (PyObject * ) _PyLong_FromByteArray (
125- const unsigned char * bytes , size_t n ,
126- int little_endian , int is_signed );
125+ const unsigned char * bytes , size_t n ,
126+ int little_endian , int is_signed );
127127
128128/* _PyLong_AsByteArray: Convert the least-significant 8*n bits of long
129129 v to a base-256 integer, stored in array bytes. Normally return 0,
@@ -145,8 +145,8 @@ PyAPI_FUNC(PyObject *) _PyLong_FromByteArray(
145145 case, but bytes holds the least-signficant n bytes of the true value.
146146*/
147147PyAPI_FUNC (int ) _PyLong_AsByteArray (PyLongObject * v ,
148- unsigned char * bytes , size_t n ,
149- int little_endian , int is_signed );
148+ unsigned char * bytes , size_t n ,
149+ int little_endian , int is_signed );
150150
151151
152152/* _PyLong_Format: Convert the long to a string object with given base,
@@ -156,9 +156,9 @@ PyAPI_FUNC(PyObject *) _PyLong_Format(PyObject *aa, int base);
156156/* Format the object based on the format_spec, as defined in PEP 3101
157157 (Advanced String Formatting). */
158158PyAPI_FUNC (PyObject * ) _PyLong_FormatAdvanced (PyObject * obj ,
159- PyObject * format_spec ,
160- Py_ssize_t start ,
161- Py_ssize_t end );
159+ PyObject * format_spec ,
160+ Py_ssize_t start ,
161+ Py_ssize_t end );
162162#endif /* Py_LIMITED_API */
163163
164164/* These aren't really part of the long object, but they're handy. The
0 commit comments