diff options
author | 1995-01-17 16:01:01 +0000 | |
---|---|---|
committer | 1995-01-17 16:01:01 +0000 | |
commit | 938178283c29cdc2c8f5004d58dff110ac907883 (patch) | |
tree | 7d38251f32f2bb35f58e40aed465785f6f7039f4 /Include/funcobject.h | |
parent | evolution (diff) | |
download | cpython-938178283c29cdc2c8f5004d58dff110ac907883.tar.gz cpython-938178283c29cdc2c8f5004d58dff110ac907883.tar.bz2 cpython-938178283c29cdc2c8f5004d58dff110ac907883.zip |
new names for lots of new functions
Diffstat (limited to 'Include/funcobject.h')
-rw-r--r-- | Include/funcobject.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/funcobject.h b/Include/funcobject.h index 877faff3ddc..d33cad755b4 100644 --- a/Include/funcobject.h +++ b/Include/funcobject.h @@ -47,8 +47,8 @@ extern DL_IMPORT PyTypeObject PyFunction_Type; extern PyObject *PyFunction_New Py_PROTO((PyObject *, PyObject *)); extern PyObject *PyFunction_GetCode Py_PROTO((PyObject *)); extern PyObject *PyFunction_GetGlobals Py_PROTO((PyObject *)); -extern PyObject *getfuncargstuff Py_PROTO((PyObject *, int *)); -extern int setfuncargstuff Py_PROTO((PyObject *, int, PyObject *)); +extern PyObject *PyFunction_GetArgStuff Py_PROTO((PyObject *, int *)); +extern int PyFunction_SetArgStuff Py_PROTO((PyObject *, int, PyObject *)); #ifdef __cplusplus } |