commit | 0908bacfa515fe81569a36d2296ef26760ffbe61 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Sat Jan 07 10:32:47 1995 +0000 |
committer | Guido van Rossum <guido@python.org> | Sat Jan 07 10:32:47 1995 +0000 |
tree | 3c90147b043b47718db8dbb5aab4bb9b071e4806 | |
parent | 9dc8d0e0a3f9520cfff61c479beea29d593e2e39 [diff] |
added func_doc
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 @@ object *func_name; int func_argcount; object *func_argdefs; + object *func_doc; } funcobject; extern DL_IMPORT typeobject Functype;