From: Benjamin Peterson Date: Sun, 3 Oct 2010 02:13:39 +0000 (+0000) Subject: typo X-Git-Tag: v3.2a3~67 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=84060b81e3ea06c7c0752854ef222e7c5fafa58c;p=thirdparty%2FPython%2Fcpython.git typo --- diff --git a/Objects/typeobject.c b/Objects/typeobject.c index c8c198df3f05..faa03df60316 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) {