]> granicus.if.org Git - python/commitdiff
Merged revisions 85193 via svnmerge from
authorBenjamin Peterson <benjamin@python.org>
Sun, 3 Oct 2010 02:19:18 +0000 (02:19 +0000)
committerBenjamin Peterson <benjamin@python.org>
Sun, 3 Oct 2010 02:19:18 +0000 (02:19 +0000)
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r85193 | benjamin.peterson | 2010-10-02 21:13:39 -0500 (Sat, 02 Oct 2010) | 1 line

  typo
........

Objects/typeobject.c

index d2eb8e27fe8222906760f9b0c6b01482d22badfa..c28d0363bdf2a3f3394b92e4a0d8a654607dd153 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) {