summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1991-06-04 19:43:13 (GMT)
committerGuido van Rossum <guido@python.org>1991-06-04 19:43:13 (GMT)
commit4ed1ad5355a2bef0b142bea5dbf22eea76ebc84f (patch)
treebcdc328aab50948014ca47a3587524099bfb3b39 /Include
parent27dec7e376fbee721bfa16aa3fccef06e316e1b9 (diff)
downloadcpython-4ed1ad5355a2bef0b142bea5dbf22eea76ebc84f.zip
cpython-4ed1ad5355a2bef0b142bea5dbf22eea76ebc84f.tar.gz
cpython-4ed1ad5355a2bef0b142bea5dbf22eea76ebc84f.tar.bz2
Export newcodeobject() interface.
Diffstat (limited to 'Include')
-rw-r--r--Include/compile.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/compile.h b/Include/compile.h
index abd458c..740e34d 100644
--- a/Include/compile.h
+++ b/Include/compile.h
@@ -46,3 +46,4 @@ extern typeobject Codetype;
/* Public interface */
struct _node; /* Declare the existence of this type */
codeobject *compile PROTO((struct _node *, char *));
+codeobject *newcodeobject PROTO((object *, object *, object *, object *));