Commit 601b096c authored by Benjamin Peterson's avatar Benjamin Peterson

indicate return value on __dir__ methods

parent 39d72dfe
......@@ -437,7 +437,7 @@ module_dir(PyObject *self, PyObject *args)
static PyMethodDef module_methods[] = {
{"__dir__", module_dir, METH_NOARGS,
PyDoc_STR("__dir__() -> specialized dir() implementation")},
PyDoc_STR("__dir__() -> list\nspecialized dir() implementation")},
{0}
};
......
......@@ -2662,7 +2662,7 @@ static PyMethodDef type_methods[] = {
{"__subclasscheck__", type___subclasscheck__, METH_O,
PyDoc_STR("__subclasscheck__() -> bool\ncheck if a class is a subclass")},
{"__dir__", type_dir, METH_NOARGS,
PyDoc_STR("__dir__() -> specialized __dir__ implementation for types")},
PyDoc_STR("__dir__() -> list\nspecialized __dir__ implementation for types")},
{0}
};
......@@ -3575,7 +3575,7 @@ static PyMethodDef object_methods[] = {
{"__sizeof__", object_sizeof, METH_NOARGS,
PyDoc_STR("__sizeof__() -> int\nsize of object in memory, in bytes")},
{"__dir__", object_dir, METH_NOARGS,
PyDoc_STR("__dir__() -> default dir() implementation")},
PyDoc_STR("__dir__() -> list\ndefault dir() implementation")},
{0}
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment