From 35c6be0b744f3e9fab99bbbe590498612507928a Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sun, 3 Oct 2010 02:17:04 +0000 Subject: 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 ........ --- Objects/typeobject.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 9cb7e62..7a11796 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) { -- cgit v0.12