summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-10-03 02:13:39 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-10-03 02:13:39 (GMT)
commit84060b81e3ea06c7c0752854ef222e7c5fafa58c (patch)
tree5af2d7f1d3d475dc3205ed6f507f2c8808adfb44 /Objects
parent970d1887c540d03d51e15db1173d3959acdd8e51 (diff)
downloadcpython-84060b81e3ea06c7c0752854ef222e7c5fafa58c.zip
cpython-84060b81e3ea06c7c0752854ef222e7c5fafa58c.tar.gz
cpython-84060b81e3ea06c7c0752854ef222e7c5fafa58c.tar.bz2
typo
Diffstat (limited to 'Objects')
-rw-r--r--Objects/typeobject.c4
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) {