diff options
author | Guido van Rossum <guido@python.org> | 1994-09-28 15:44:39 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-09-28 15:44:39 (GMT) |
commit | c5d92e12717d49f94820dd1524a75e771b57ad59 (patch) | |
tree | 332f19c789c720bdf2e4b8bd8f3d5e4771bfb601 /Include | |
parent | 6c849697fd0085ea4415b7ef5bdef30e734092b2 (diff) | |
download | cpython-c5d92e12717d49f94820dd1524a75e771b57ad59.zip cpython-c5d92e12717d49f94820dd1524a75e771b57ad59.tar.gz cpython-c5d92e12717d49f94820dd1524a75e771b57ad59.tar.bz2 |
ceval.h: added Py_MakePendingCalls()
classobject.h: added instancebinop()
modsupport.h: added newgetargs()
rename1.h: removed Py_FPROTO
Diffstat (limited to 'Include')
-rw-r--r-- | Include/ceval.h | 1 | ||||
-rw-r--r-- | Include/classobject.h | 2 | ||||
-rw-r--r-- | Include/modsupport.h | 1 | ||||
-rwxr-xr-x | Include/rename1.h | 1 |
4 files changed, 4 insertions, 1 deletions
diff --git a/Include/ceval.h b/Include/ceval.h index 695c0c7..7002dd4 100644 --- a/Include/ceval.h +++ b/Include/ceval.h @@ -41,6 +41,7 @@ void printtraceback PROTO((object *)); void flushline PROTO((void)); int Py_AddPendingCall PROTO((int (*func) PROTO((ANY *)), ANY *arg)); +int Py_MakePendingCalls PROTO((void)); /* Interface for threads. diff --git a/Include/classobject.h b/Include/classobject.h index 6024dba..227c914 100644 --- a/Include/classobject.h +++ b/Include/classobject.h @@ -71,6 +71,8 @@ extern object *instancemethodgetclass PROTO((object *)); extern int issubclass PROTO((object *, object *)); +extern object *instancebinop PROTO((object *, object *, char *, char *)); + #ifdef __cplusplus } #endif diff --git a/Include/modsupport.h b/Include/modsupport.h index a1f3f1c..69378cd 100644 --- a/Include/modsupport.h +++ b/Include/modsupport.h @@ -35,6 +35,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include <stdarg.h> extern int getargs PROTO((object *, char *, ...)); +extern int newgetargs PROTO((object *, char *, ...)); extern object *mkvalue PROTO((char *, ...)); #else diff --git a/Include/rename1.h b/Include/rename1.h index 22c5dcf..5d258f3 100755 --- a/Include/rename1.h +++ b/Include/rename1.h @@ -118,7 +118,6 @@ typedef struct methodlist PyMethodDef; #define PyObject_NEW NEWOBJ #define PyObject_NEW_VAR NEWVAROBJ #define Py_PROTO PROTO -#define Py_FPROTO PROTO #define PyMem_NEW NEW #define PyMem_RESIZE RESIZE #define PyMem_DEL DEL |