From: Benjamin Peterson Date: Sun, 3 Oct 2010 02:17:04 +0000 (+0000) Subject: Merged revisions 85193 via svnmerge from X-Git-Tag: v2.7.1rc1~213 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=35c6be0b744f3e9fab99bbbe590498612507928a;p=python Merged revisions 85193 via svnmerge from 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 ........ --- 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) {