From 0908bacfa515fe81569a36d2296ef26760ffbe61 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sat, 7 Jan 1995 10:32:47 +0000 Subject: [PATCH] added func_doc --- Include/funcobject.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Include/funcobject.h b/Include/funcobject.h index 9801505e674..a6e30ca0c9c 100644 --- a/Include/funcobject.h +++ b/Include/funcobject.h @@ -37,6 +37,7 @@ typedef struct { object *func_name; int func_argcount; object *func_argdefs; + object *func_doc; } funcobject; extern DL_IMPORT typeobject Functype;