summaryrefslogtreecommitdiffstats
path: root/Objects/typeobject.c
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-08-16 20:17:07 (GMT)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-08-16 20:17:07 (GMT)
commit977a684c94c369a858f49ce1447308e373ca4ced (patch)
treeff6779e1c4a2dfcf13edf2c7a2858fc0b27473e7 /Objects/typeobject.c
parent4a339ad628e34578a0daea676b56fff919da6bb3 (diff)
downloadcpython-977a684c94c369a858f49ce1447308e373ca4ced.zip
cpython-977a684c94c369a858f49ce1447308e373ca4ced.tar.gz
cpython-977a684c94c369a858f49ce1447308e373ca4ced.tar.bz2
Issue #8983: Corrected docstrings.
Diffstat (limited to 'Objects/typeobject.c')
-rw-r--r--Objects/typeobject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c
index 7bb6864..1babcb6 100644
--- a/Objects/typeobject.c
+++ b/Objects/typeobject.c
@@ -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, ""),