diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2011-02-11 20:47:49 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2011-02-11 20:47:49 (GMT) |
commit | 691680644351924a4c5d0bee445e52b1d7e0cf97 (patch) | |
tree | a6b499eb3bc5b45019558832a35e95a70b531908 /Include/object.h | |
parent | dafdd7f8caf8e5fa4cceaade2c7e8c0076085dad (diff) | |
download | cpython-691680644351924a4c5d0bee445e52b1d7e0cf97.zip cpython-691680644351924a4c5d0bee445e52b1d7e0cf97.tar.gz cpython-691680644351924a4c5d0bee445e52b1d7e0cf97.tar.bz2 |
Issue #11135: Remove redundant doc field from PyType_Spec.
Reviewed by Georg Brandl.
Diffstat (limited to 'Include/object.h')
-rw-r--r-- | Include/object.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/object.h b/Include/object.h index 99a7737..3753785 100644 --- a/Include/object.h +++ b/Include/object.h @@ -396,7 +396,6 @@ typedef struct{ typedef struct{ const char* name; - const char* doc; int basicsize; int itemsize; int flags; |