diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-10-03 02:17:04 +0000 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-10-03 02:17:04 +0000 |
commit | 35c6be0b744f3e9fab99bbbe590498612507928a (patch) | |
tree | e552cd61c02f6a568dfbb53be2995721be9f4e1b | |
parent | 10a867669193c942e5ad3da9da0b6bcc5b493c17 (diff) | |
download | cpython-git-35c6be0b744f3e9fab99bbbe590498612507928a.tar.gz |
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
........
-rw-r--r-- | Objects/typeobject.c | 4 |
1 files changed, 2 insertions, 2 deletions
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) { |