summaryrefslogtreecommitdiffstats
path: root/Include/funcobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1990-11-18 17:44:34 (GMT)
committerGuido van Rossum <guido@python.org>1990-11-18 17:44:34 (GMT)
commit226d79eb4a776dd54c9e4544b17deaf928bcef3a (patch)
tree565634f9e462de8b59df88ab7013edfe3649abcd /Include/funcobject.h
parent846e431372fecea5b5c92414d1a0e2cfccd7efc3 (diff)
downloadcpython-226d79eb4a776dd54c9e4544b17deaf928bcef3a.zip
cpython-226d79eb4a776dd54c9e4544b17deaf928bcef3a.tar.gz
cpython-226d79eb4a776dd54c9e4544b17deaf928bcef3a.tar.bz2
Changed interface (no nodes but code).
Diffstat (limited to 'Include/funcobject.h')
-rw-r--r--Include/funcobject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/funcobject.h b/Include/funcobject.h
index 835a21b..329cf71 100644
--- a/Include/funcobject.h
+++ b/Include/funcobject.h
@@ -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 *));