]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Changed interface (no nodes but code).
authorGuido van Rossum <guido@python.org>
Sun, 18 Nov 1990 17:44:34 +0000 (17:44 +0000)
committerGuido van Rossum <guido@python.org>
Sun, 18 Nov 1990 17:44:34 +0000 (17:44 +0000)
Include/funcobject.h

index 835a21b9214660c3f02de0972380332c82e75932..329cf716698d88fe1523c588b3098374db1d4ad7 100644 (file)
@@ -4,6 +4,6 @@ extern typeobject Functype;
 
 #define is_funcobject(op) ((op)->ob_type == &Functype)
 
-extern object *newfuncobject PROTO((node *, object *));
-extern node *getfuncnode PROTO((object *));
+extern object *newfuncobject PROTO((object *, object *));
+extern object *getfunccode PROTO((object *));
 extern object *getfuncglobals PROTO((object *));