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.
This commit is contained in:
Guido van Rossum 2001-09-20 21:45:26 +00:00
parent a56b42b1ba
commit 32d34c809f
10 changed files with 43 additions and 26 deletions

View file

@ -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 */
};