summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-10-03 02:19:18 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-10-03 02:19:18 (GMT)
commit866c74e3d61d1563957e3d8bfa8ef38f85515360 (patch)
tree87551e28da1a655a81f6911c636d127e415174ad /Objects
parent0ad44fa3f7df2e0a56cb0d084115760140bcb86f (diff)
downloadcpython-866c74e3d61d1563957e3d8bfa8ef38f85515360.zip
cpython-866c74e3d61d1563957e3d8bfa8ef38f85515360.tar.gz
cpython-866c74e3d61d1563957e3d8bfa8ef38f85515360.tar.bz2
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 ........
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 d2eb8e2..c28d036 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) {