diff options
author | Guido van Rossum <guido@python.org> | 2001-09-20 21:45:26 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-09-20 21:45:26 (GMT) |
commit | 32d34c809f5971f79462dcb7d0f536d46e624acc (patch) | |
tree | 29d97883adf68d8112d55c94eca8f4fb93048628 /Objects/classobject.c | |
parent | a56b42b1ba646170d5476e8925c56e2266b37f98 (diff) | |
download | cpython-32d34c809f5971f79462dcb7d0f536d46e624acc.zip cpython-32d34c809f5971f79462dcb7d0f536d46e624acc.tar.gz cpython-32d34c809f5971f79462dcb7d0f536d46e624acc.tar.bz2 |
Add optional docstrings to getset descriptors. Fortunately, there's
no backwards compatibility to worry about, so I just pushed the
'closure' struct member to the back -- it's never used in the current
code base (I may eliminate it, but that's more work because the getter
and setter signatures would have to change.)
As examples, I added actual docstrings to the getset attributes of a
few types: file.closed, xxsubtype.spamdict.state.
Diffstat (limited to 'Objects/classobject.c')
-rw-r--r-- | Objects/classobject.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Objects/classobject.c b/Objects/classobject.c index f8ee6fd..df10aa2 100644 --- a/Objects/classobject.c +++ b/Objects/classobject.c @@ -2036,10 +2036,10 @@ im_get_name(PyMethodObject *im) return PyObject_GetAttrString(im->im_func, "__name__"); } -static struct getsetlist instancemethod_getsetlist[] = { - {"__dict__", (getter)im_get_dict}, - {"__doc__", (getter)im_get_doc}, - {"__name__", (getter)im_get_name}, +static PyGetSetDef instancemethod_getsetlist[] = { + {"__dict__", (getter)im_get_dict, NULL, "same as im_func.__dict__"}, + {"__doc__", (getter)im_get_doc, NULL, "same as im_func.__doc__"}, + {"__name__", (getter)im_get_name, NULL, "same as im_func.__name__"}, {NULL} /* Sentinel */ }; |