]> granicus.if.org Git - python/commitdiff
typo
authorBenjamin Peterson <benjamin@python.org>
Sun, 3 Oct 2010 02:13:39 +0000 (02:13 +0000)
committerBenjamin Peterson <benjamin@python.org>
Sun, 3 Oct 2010 02:13:39 +0000 (02:13 +0000)
Objects/typeobject.c

index c8c198df3f0504f9b66191e1b0062c02ce861fda..faa03df60316414a11ab4c13c89a1d8f1bd9f67f 100644 (file)
@@ -321,8 +321,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) {