diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-05-24 17:42:51 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-05-24 17:42:51 (GMT) |
commit | fbe56bb8bdc40179e42ef14e59b2b24df902c52a (patch) | |
tree | a37ac097f507ac6d8cd3530c0dee3da868705ac0 /Objects | |
parent | a7cdb0f218b991f7d8c8f45af0e4f975673ee351 (diff) | |
download | cpython-fbe56bb8bdc40179e42ef14e59b2b24df902c52a.zip cpython-fbe56bb8bdc40179e42ef14e59b2b24df902c52a.tar.gz cpython-fbe56bb8bdc40179e42ef14e59b2b24df902c52a.tar.bz2 |
use '->' to indicate return values
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/typeobject.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 310a56c..5c20e0d 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -2515,9 +2515,9 @@ static PyMethodDef type_methods[] = { PyDoc_STR("__prepare__() -> dict\n" "used to create the namespace for the class statement")}, {"__instancecheck__", type___instancecheck__, METH_O, - PyDoc_STR("__instancecheck__() -> check if an object is an instance")}, + PyDoc_STR("__instancecheck__() -> bool\ncheck if an object is an instance")}, {"__subclasscheck__", type___subclasscheck__, METH_O, - PyDoc_STR("__subclasscheck__() -> check if a class is a subclass")}, + PyDoc_STR("__subclasscheck__() -> bool\ncheck if a class is a subclass")}, {0} }; @@ -3354,7 +3354,7 @@ static PyMethodDef object_methods[] = { {"__format__", object_format, METH_VARARGS, PyDoc_STR("default object formatter")}, {"__sizeof__", object_sizeof, METH_NOARGS, - PyDoc_STR("__sizeof__() -> size of object in memory, in bytes")}, + PyDoc_STR("__sizeof__() -> int\nsize of object in memory, in bytes")}, {0} }; |