[Python-checkins] r85193 - python/branches/py3k/Objects/typeobject.c
benjamin.peterson
python-checkins at python.org
Sun Oct 3 04:13:39 CEST 2010
Author: benjamin.peterson
Date: Sun Oct 3 04:13:39 2010
New Revision: 85193
Log:
typo
Modified:
python/branches/py3k/Objects/typeobject.c
Modified: python/branches/py3k/Objects/typeobject.c
==============================================================================
--- python/branches/py3k/Objects/typeobject.c (original)
+++ python/branches/py3k/Objects/typeobject.c Sun Oct 3 04:13:39 2010
@@ -321,8 +321,8 @@
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) {
More information about the Python-checkins
mailing list