]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
ceval.h: added Py_MakePendingCalls()
authorGuido van Rossum <guido@python.org>
Wed, 28 Sep 1994 15:44:39 +0000 (15:44 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 28 Sep 1994 15:44:39 +0000 (15:44 +0000)
classobject.h: added instancebinop()
modsupport.h: added newgetargs()
rename1.h: removed Py_FPROTO

Include/ceval.h
Include/classobject.h
Include/modsupport.h
Include/rename1.h

index 695c0c7b8da8e0602542a444b6944ffdd210ee3d..7002dd453d616961398ced3b1aeb68728ee9ecf8 100644 (file)
@@ -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.
index 6024dbaff600ab52254c75566c125459879c4f26..227c9141f2b7861e15e17523eea1fec03e9496c4 100644 (file)
@@ -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
index a1f3f1cdd3292589d1aa98c2fedf7bfa9f5b78ba..69378cdbfc2501d35e753b56e3d98f7353839a02 100644 (file)
@@ -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
index 22c5dcf80dcf039ef6242e1feb7e167aca2e4e51..5d258f303c9e2101ff2df1de9d9cc1f5560461d7 100755 (executable)
@@ -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