From: Benjamin Peterson Date: Tue, 24 May 2011 17:42:51 +0000 (-0500) Subject: use '->' to indicate return values X-Git-Tag: v2.7.2rc1~16 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=80a09c70bfa4592a8067274f49f24f9fffe8b795;p=thirdparty%2FPython%2Fcpython.git use '->' to indicate return values --- diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 30afc24bf055..49c7e071e923 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -2665,9 +2665,9 @@ static PyMethodDef type_methods[] = { {"__subclasses__", (PyCFunction)type_subclasses, METH_NOARGS, PyDoc_STR("__subclasses__() -> list of immediate subclasses")}, {"__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} }; @@ -3490,7 +3490,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} };