Add decl of PySuper_Type; fixup comments for the two other types.
diff --git a/Include/object.h b/Include/object.h
index f832717..740ee44 100644
--- a/Include/object.h
+++ b/Include/object.h
@@ -304,8 +304,9 @@
#define PyObject_TypeCheck(ob, tp) \
((ob)->ob_type == (tp) || PyType_IsSubtype((ob)->ob_type, (tp)))
-extern DL_IMPORT(PyTypeObject) PyType_Type; /* Metatype */
-extern DL_IMPORT(PyTypeObject) PyBaseObject_Type; /* Most base object type */
+extern DL_IMPORT(PyTypeObject) PyType_Type; /* built-in 'type' */
+extern DL_IMPORT(PyTypeObject) PyBaseObject_Type; /* built-in 'object' */
+extern DL_IMPORT(PyTypeObject) PySuper_Type; /* built-in 'super' */
#define PyType_Check(op) PyObject_TypeCheck(op, &PyType_Type)