Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f28b898

Browse files
Removed references to Py_FPROTO.
1 parent 2dd4abf commit f28b898

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Modules/cstubs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ gl_varray(self, args)
109109
PyObject *v, *w=NULL;
110110
int i, n, width;
111111
double vec[3];
112-
PyObject * (*getitem) Py_FPROTO((PyObject *, int));
112+
PyObject * (*getitem)(PyObject *, int);
113113

114114
if (!PyArg_GetObject(args, 1, 0, &v))
115115
return NULL;
@@ -212,7 +212,7 @@ gen_nvarray(args, inorm)
212212
PyObject *v, *w, *wnorm, *wvec;
213213
int i, n;
214214
float norm[3], vec[3];
215-
PyObject * (*getitem) Py_FPROTO((PyObject *, int));
215+
PyObject * (*getitem)(PyObject *, int);
216216

217217
if (!PyArg_GetObject(args, 1, 0, &v))
218218
return NULL;

0 commit comments

Comments
 (0)