From: Guido van Rossum Date: Tue, 4 Jun 1991 19:43:13 +0000 (+0000) Subject: Export newcodeobject() interface. X-Git-Tag: v0.9.8~914 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4ed1ad5355a2bef0b142bea5dbf22eea76ebc84f;p=thirdparty%2FPython%2Fcpython.git Export newcodeobject() interface. --- diff --git a/Include/compile.h b/Include/compile.h index abd458cf438b..740e34d02f75 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 *));