mirror of
https://github.com/python/cpython.git
synced 2024-12-18 06:14:00 +08:00
Moved rename2's macros relevant to this module here and added comment
about the file's obsolescence.
This commit is contained in:
parent
1875247549
commit
1818b7702b
@ -37,6 +37,8 @@ PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
/* Definitions used by cgen output */
|
||||
|
||||
/* XXX This file is obsolete. It is *only* used by glmodule.c. */
|
||||
|
||||
typedef char *string;
|
||||
|
||||
#define mknewlongobject(x) PyInt_FromLong(x)
|
||||
@ -44,6 +46,19 @@ typedef char *string;
|
||||
#define mknewfloatobject(x) PyFloat_FromDouble(x)
|
||||
#define mknewcharobject(ch) Py_BuildValue("c", ch)
|
||||
|
||||
#define getichararg PyArg_GetChar
|
||||
#define getidoublearray PyArg_GetDoubleArray
|
||||
#define getifloatarg PyArg_GetFloat
|
||||
#define getifloatarray PyArg_GetFloatArray
|
||||
#define getilongarg PyArg_GetLong
|
||||
#define getilongarray PyArg_GetLongArray
|
||||
#define getilongarraysize PyArg_GetLongArraySize
|
||||
#define getiobjectarg PyArg_GetObject
|
||||
#define getishortarg PyArg_GetShort
|
||||
#define getishortarray PyArg_GetShortArray
|
||||
#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,
|
||||
|
@ -37,6 +37,8 @@ PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
/* Definitions used by cgen output */
|
||||
|
||||
/* XXX This file is obsolete. It is *only* used by glmodule.c. */
|
||||
|
||||
typedef char *string;
|
||||
|
||||
#define mknewlongobject(x) PyInt_FromLong(x)
|
||||
@ -44,6 +46,19 @@ typedef char *string;
|
||||
#define mknewfloatobject(x) PyFloat_FromDouble(x)
|
||||
#define mknewcharobject(ch) Py_BuildValue("c", ch)
|
||||
|
||||
#define getichararg PyArg_GetChar
|
||||
#define getidoublearray PyArg_GetDoubleArray
|
||||
#define getifloatarg PyArg_GetFloat
|
||||
#define getifloatarray PyArg_GetFloatArray
|
||||
#define getilongarg PyArg_GetLong
|
||||
#define getilongarray PyArg_GetLongArray
|
||||
#define getilongarraysize PyArg_GetLongArraySize
|
||||
#define getiobjectarg PyArg_GetObject
|
||||
#define getishortarg PyArg_GetShort
|
||||
#define getishortarray PyArg_GetShortArray
|
||||
#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,
|
||||
|
Loading…
Reference in New Issue
Block a user