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
........
This commit is contained in:
Benjamin Peterson 2010-10-03 02:19:18 +00:00
parent 0ad44fa3f7
commit 866c74e3d6

View file

@ -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) {