]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
added func_doc
authorGuido van Rossum <guido@python.org>
Sat, 7 Jan 1995 10:32:47 +0000 (10:32 +0000)
committerGuido van Rossum <guido@python.org>
Sat, 7 Jan 1995 10:32:47 +0000 (10:32 +0000)
Include/funcobject.h

index 9801505e67468b5ebe8728b6b86d5b2529ceee33..a6e30ca0c9c2caa49e48a2a9acb75a24f7592fa0 100644 (file)
@@ -37,6 +37,7 @@ typedef struct {
        object *func_name;
        int     func_argcount;
        object *func_argdefs;
+       object *func_doc;
 } funcobject;
 
 extern DL_IMPORT typeobject Functype;