diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-10-03 02:13:39 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-10-03 02:13:39 (GMT) |
commit | 84060b81e3ea06c7c0752854ef222e7c5fafa58c (patch) | |
tree | 5af2d7f1d3d475dc3205ed6f507f2c8808adfb44 /Objects | |
parent | 970d1887c540d03d51e15db1173d3959acdd8e51 (diff) | |
download | cpython-84060b81e3ea06c7c0752854ef222e7c5fafa58c.zip cpython-84060b81e3ea06c7c0752854ef222e7c5fafa58c.tar.gz cpython-84060b81e3ea06c7c0752854ef222e7c5fafa58c.tar.bz2 |
typo
Diffstat (limited to 'Objects')
-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 c8c198d..faa03df 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) { |