From: Benjamin Peterson Date: Sun, 3 Oct 2010 02:19:18 +0000 (+0000) Subject: Merged revisions 85193 via svnmerge from X-Git-Tag: v3.1.3rc1~175 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=866c74e3d61d1563957e3d8bfa8ef38f85515360;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 d2eb8e27fe..c28d0363bd 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -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) {