mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.
This commit is contained in:
parent
4be47c0f76
commit
dbd9ba6a6c
53 changed files with 295 additions and 303 deletions
|
@ -38,34 +38,34 @@ typedef char *string;
|
|||
#define getishortarraysize PyArg_GetShortArraySize
|
||||
#define getistringarg PyArg_GetString
|
||||
|
||||
extern int PyArg_GetObject Py_PROTO((PyObject *args, int nargs,
|
||||
int i, PyObject **p_a));
|
||||
extern int PyArg_GetLong Py_PROTO((PyObject *args, int nargs,
|
||||
int i, long *p_a));
|
||||
extern int PyArg_GetShort Py_PROTO((PyObject *args, int nargs,
|
||||
int i, short *p_a));
|
||||
extern int PyArg_GetFloat Py_PROTO((PyObject *args, int nargs,
|
||||
int i, float *p_a));
|
||||
extern int PyArg_GetString Py_PROTO((PyObject *args, int nargs,
|
||||
int i, string *p_a));
|
||||
extern int PyArg_GetChar Py_PROTO((PyObject *args, int nargs,
|
||||
int i, char *p_a));
|
||||
extern int PyArg_GetLongArray Py_PROTO((PyObject *args, int nargs,
|
||||
int i, int n, long *p_a));
|
||||
extern int PyArg_GetShortArray Py_PROTO((PyObject *args, int nargs,
|
||||
int i, int n, short *p_a));
|
||||
extern int PyArg_GetDoubleArray Py_PROTO((PyObject *args, int nargs,
|
||||
int i, int n, double *p_a));
|
||||
extern int PyArg_GetFloatArray Py_PROTO((PyObject *args, int nargs,
|
||||
int i, int n, float *p_a));
|
||||
extern int PyArg_GetLongArraySize Py_PROTO((PyObject *args, int nargs,
|
||||
int i, long *p_a));
|
||||
extern int PyArg_GetShortArraySize Py_PROTO((PyObject *args, int nargs,
|
||||
int i, short *p_a));
|
||||
extern int PyArg_GetDoubleArraySize Py_PROTO((PyObject *args, int nargs,
|
||||
int i, double *p_a));
|
||||
extern int PyArg_GetFloatArraySize Py_PROTO((PyObject *args, int nargs,
|
||||
int i, float *p_a));
|
||||
extern int PyArg_GetObject(PyObject *args, int nargs,
|
||||
int i, PyObject **p_a);
|
||||
extern int PyArg_GetLong(PyObject *args, int nargs,
|
||||
int i, long *p_a);
|
||||
extern int PyArg_GetShort(PyObject *args, int nargs,
|
||||
int i, short *p_a);
|
||||
extern int PyArg_GetFloat(PyObject *args, int nargs,
|
||||
int i, float *p_a);
|
||||
extern int PyArg_GetString(PyObject *args, int nargs,
|
||||
int i, string *p_a);
|
||||
extern int PyArg_GetChar(PyObject *args, int nargs,
|
||||
int i, char *p_a);
|
||||
extern int PyArg_GetLongArray(PyObject *args, int nargs,
|
||||
int i, int n, long *p_a);
|
||||
extern int PyArg_GetShortArray(PyObject *args, int nargs,
|
||||
int i, int n, short *p_a);
|
||||
extern int PyArg_GetDoubleArray(PyObject *args, int nargs,
|
||||
int i, int n, double *p_a);
|
||||
extern int PyArg_GetFloatArray(PyObject *args, int nargs,
|
||||
int i, int n, float *p_a);
|
||||
extern int PyArg_GetLongArraySize(PyObject *args, int nargs,
|
||||
int i, long *p_a);
|
||||
extern int PyArg_GetShortArraySize(PyObject *args, int nargs,
|
||||
int i, short *p_a);
|
||||
extern int PyArg_GetDoubleArraySize(PyObject *args, int nargs,
|
||||
int i, double *p_a);
|
||||
extern int PyArg_GetFloatArraySize(PyObject *args, int nargs,
|
||||
int i, float *p_a);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue