]> granicus.if.org Git - python/commitdiff
use '->' to indicate return values
authorBenjamin Peterson <benjamin@python.org>
Tue, 24 May 2011 17:42:51 +0000 (12:42 -0500)
committerBenjamin Peterson <benjamin@python.org>
Tue, 24 May 2011 17:42:51 +0000 (12:42 -0500)
Objects/typeobject.c

index 310a56c4e5cd91c0b1dd5a51d3268bc8bd5f32c2..5c20e0da1100a4ca3622803692ac2a72f3ba4fb3 100644 (file)
@@ -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}
 };