Issue #8983: Corrected docstrings.

This commit is contained in:
Alexander Belopolsky 2010-08-16 20:17:07 +00:00
parent 4a339ad628
commit 977a684c94
5 changed files with 8 additions and 8 deletions

View file

@ -2515,7 +2515,7 @@ static PyMethodDef type_methods[] = {
{"__instancecheck__", type___instancecheck__, METH_O,
PyDoc_STR("__instancecheck__() -> check if an object is an instance")},
{"__subclasscheck__", type___subclasscheck__, METH_O,
PyDoc_STR("__subclasschck__ -> check if an class is a subclass")},
PyDoc_STR("__subclasscheck__() -> check if a class is a subclass")},
{0}
};
@ -5521,7 +5521,7 @@ static slotdef slotdefs[] = {
wrap_descr_delete, "descr.__delete__(obj)"),
FLSLOT("__init__", tp_init, slot_tp_init, (wrapperfunc)wrap_init,
"x.__init__(...) initializes x; "
"see x.__class__.__doc__ for signature",
"see help(type(x)) for signature",
PyWrapperFlag_KEYWORDS),
TPSLOT("__new__", tp_new, slot_tp_new, NULL, ""),
TPSLOT("__del__", tp_del, slot_tp_del, NULL, ""),