diff options
author | Guido van Rossum <guido@python.org> | 1995-01-17 16:01:01 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-17 16:01:01 (GMT) |
commit | 938178283c29cdc2c8f5004d58dff110ac907883 (patch) | |
tree | 7d38251f32f2bb35f58e40aed465785f6f7039f4 /Include/funcobject.h | |
parent | 8e8a525f229ef6a9e1b881e9b71eda72dabd5007 (diff) | |
download | cpython-938178283c29cdc2c8f5004d58dff110ac907883.zip cpython-938178283c29cdc2c8f5004d58dff110ac907883.tar.gz cpython-938178283c29cdc2c8f5004d58dff110ac907883.tar.bz2 |
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 877faff..d33cad7 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 } |