summaryrefslogtreecommitdiffstats
path: root/Include/funcobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-01-07 10:32:47 (GMT)
committerGuido van Rossum <guido@python.org>1995-01-07 10:32:47 (GMT)
commit0908bacfa515fe81569a36d2296ef26760ffbe61 (patch)
tree3c90147b043b47718db8dbb5aab4bb9b071e4806 /Include/funcobject.h
parent9dc8d0e0a3f9520cfff61c479beea29d593e2e39 (diff)
downloadcpython-0908bacfa515fe81569a36d2296ef26760ffbe61.zip
cpython-0908bacfa515fe81569a36d2296ef26760ffbe61.tar.gz
cpython-0908bacfa515fe81569a36d2296ef26760ffbe61.tar.bz2
added func_doc
Diffstat (limited to 'Include/funcobject.h')
-rw-r--r--Include/funcobject.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/funcobject.h b/Include/funcobject.h
index 9801505..a6e30ca 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;