@@ -62,7 +62,7 @@ extern "C" PyObject* PyObject_Type(PyObject* o) noexcept {
6262
6363extern " C" Py_ssize_t _PyObject_LengthHint (PyObject* o, Py_ssize_t defaultvalue) noexcept {
6464 static PyObject* hintstrobj = NULL ;
65- PyObject* ro, *hintmeth;
65+ PyObject * ro, *hintmeth;
6666 Py_ssize_t rv;
6767
6868 /* try o.__len__() */
@@ -164,8 +164,8 @@ extern "C" int PyBuffer_IsContiguous(Py_buffer* view, char fort) noexcept {
164164extern " C" int PyBuffer_ToContiguous (void * buf, Py_buffer* view, Py_ssize_t len, char fort) noexcept {
165165 int k;
166166 void (*addone)(int , Py_ssize_t*, const Py_ssize_t*);
167- Py_ssize_t* indices, elements;
168- char * dest, *ptr;
167+ Py_ssize_t * indices, elements;
168+ char * dest, *ptr;
169169
170170 if (len > view->len ) {
171171 len = view->len ;
@@ -263,7 +263,7 @@ extern "C" void PyBuffer_Release(Py_buffer* view) noexcept {
263263static PyObject* objargs_mktuple (va_list va) noexcept {
264264 int i, n = 0 ;
265265 va_list countva;
266- PyObject* result, *tmp;
266+ PyObject * result, *tmp;
267267
268268#ifdef VA_LIST_IS_ARRAY
269269 memcpy (countva, va, sizeof (va_list));
@@ -508,7 +508,7 @@ extern "C" int PyObject_IsInstance(PyObject* inst, PyObject* cls) noexcept {
508508}
509509
510510extern " C" PyObject* PyObject_CallFunctionObjArgs (PyObject* callable, ...) noexcept {
511- PyObject* args, *tmp;
511+ PyObject * args, *tmp;
512512 va_list vargs;
513513
514514 if (callable == NULL )
@@ -666,7 +666,7 @@ extern "C" PyObject* PyObject_CallMethod(PyObject* o, const char* name, const ch
666666}
667667
668668extern " C" PyObject* PyObject_CallMethodObjArgs (PyObject* callable, PyObject* name, ...) noexcept {
669- PyObject* args, *tmp;
669+ PyObject * args, *tmp;
670670 va_list vargs;
671671
672672 if (callable == NULL || name == NULL )
@@ -943,8 +943,8 @@ extern "C" void _Py_add_one_to_index_C(int nd, Py_ssize_t* index, const Py_ssize
943943extern " C" int PyObject_CopyData (PyObject* dest, PyObject* src) noexcept {
944944 Py_buffer view_dest, view_src;
945945 int k;
946- Py_ssize_t* indices, elements;
947- char * dptr, *sptr;
946+ Py_ssize_t * indices, elements;
947+ char * dptr, *sptr;
948948
949949 if (!PyObject_CheckBuffer (dest) || !PyObject_CheckBuffer (src)) {
950950 PyErr_SetString (PyExc_TypeError, " both destination and source must have the "
@@ -1131,7 +1131,7 @@ static PyObject* binary_iop(PyObject* v, PyObject* w, const int iop_slot, const
11311131 */
11321132
11331133static PyObject* ternary_op (PyObject* v, PyObject* w, PyObject* z, const int op_slot, const char * op_name) noexcept {
1134- PyNumberMethods* mv, *mw, *mz;
1134+ PyNumberMethods * mv, *mw, *mz;
11351135 PyObject* x = NULL ;
11361136 ternaryfunc slotv = NULL ;
11371137 ternaryfunc slotw = NULL ;
@@ -1180,7 +1180,7 @@ static PyObject* ternary_op(PyObject* v, PyObject* w, PyObject* z, const int op_
11801180
11811181 if (!NEW_STYLE_NUMBER (v) || !NEW_STYLE_NUMBER (w) || (z != Py_None && !NEW_STYLE_NUMBER (z))) {
11821182 /* we have an old style operand, coerce */
1183- PyObject* v1, *z1, *w2, *z2;
1183+ PyObject * v1, *z1, *w2, *z2;
11841184 int c;
11851185
11861186 c = PyNumber_Coerce (&v, &w);
@@ -1473,7 +1473,7 @@ extern "C" PyObject* PySequence_Repeat(PyObject* o, Py_ssize_t count) noexcept {
14731473 have an nb_multiply slot, not an sq_repeat slot. so we fall back
14741474 to nb_multiply if o appears to be a sequence. */
14751475 if (PySequence_Check (o)) {
1476- PyObject* n, *result;
1476+ PyObject * n, *result;
14771477 n = PyInt_FromSsize_t (count);
14781478 if (n == NULL )
14791479 return NULL ;
@@ -1520,7 +1520,7 @@ extern "C" PyObject* PySequence_InPlaceRepeat(PyObject* o, Py_ssize_t count) noe
15201520 return m->sq_repeat (o, count);
15211521
15221522 if (PySequence_Check (o)) {
1523- PyObject* n, *result;
1523+ PyObject * n, *result;
15241524 n = PyInt_FromSsize_t (count);
15251525 if (n == NULL )
15261526 return NULL ;
@@ -1556,7 +1556,7 @@ extern "C" PyObject* PySequence_GetItem(PyObject* s, Py_ssize_t i) noexcept {
15561556}
15571557
15581558PyObject* _PySlice_FromIndices (Py_ssize_t istart, Py_ssize_t istop) {
1559- PyObject* start, *end, *slice;
1559+ PyObject * start, *end, *slice;
15601560 start = PyInt_FromSsize_t (istart);
15611561 if (!start)
15621562 return NULL ;
@@ -1794,7 +1794,7 @@ extern "C" int PyMapping_HasKey(PyObject* o, PyObject* key) noexcept {
17941794}
17951795
17961796extern " C" PyObject* PyMapping_GetItemString (PyObject* o, char * key) noexcept {
1797- PyObject* okey, *r;
1797+ PyObject * okey, *r;
17981798
17991799 if (key == NULL )
18001800 return null_error ();
0 commit comments