diff options
author | Guido van Rossum <guido@python.org> | 1991-06-04 19:43:13 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-06-04 19:43:13 (GMT) |
commit | 4ed1ad5355a2bef0b142bea5dbf22eea76ebc84f (patch) | |
tree | bcdc328aab50948014ca47a3587524099bfb3b39 /Include/compile.h | |
parent | 27dec7e376fbee721bfa16aa3fccef06e316e1b9 (diff) | |
download | cpython-4ed1ad5355a2bef0b142bea5dbf22eea76ebc84f.zip cpython-4ed1ad5355a2bef0b142bea5dbf22eea76ebc84f.tar.gz cpython-4ed1ad5355a2bef0b142bea5dbf22eea76ebc84f.tar.bz2 |
Export newcodeobject() interface.
Diffstat (limited to 'Include/compile.h')
-rw-r--r-- | Include/compile.h | 1 |
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 *)); |