summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Objects/typeobject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c
index 9cb7e6238e..7a11796765 100644
--- a/Objects/typeobject.c
+++ b/Objects/typeobject.c
@@ -308,8 +308,8 @@ static PyObject *
type_abstractmethods(PyTypeObject *type, void *context)
{
PyObject *mod = NULL;
- /* type its self has an __abstractmethods__ descriptor (this). Don't
- return that. */
+ /* type itself has an __abstractmethods__ descriptor (this). Don't return
+ that. */
if (type != &PyType_Type)
mod = PyDict_GetItemString(type->tp_dict, "__abstractmethods__");
if (!mod) {