diff options
| author | Guido van Rossum <guido@python.org> | 1995-01-07 10:32:47 (GMT) |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 1995-01-07 10:32:47 (GMT) |
| commit | 0908bacfa515fe81569a36d2296ef26760ffbe61 (patch) | |
| tree | 3c90147b043b47718db8dbb5aab4bb9b071e4806 | |
| parent | 9dc8d0e0a3f9520cfff61c479beea29d593e2e39 (diff) | |
| download | cpython-0908bacfa515fe81569a36d2296ef26760ffbe61.zip cpython-0908bacfa515fe81569a36d2296ef26760ffbe61.tar.gz cpython-0908bacfa515fe81569a36d2296ef26760ffbe61.tar.bz2 | |
added func_doc
| -rw-r--r-- | Include/funcobject.h | 1 |
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; |
