Commit 866c74e3 authored by Benjamin Peterson's avatar Benjamin Peterson

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
........
parent 0ad44fa3
...@@ -321,8 +321,8 @@ static PyObject * ...@@ -321,8 +321,8 @@ static PyObject *
type_abstractmethods(PyTypeObject *type, void *context) type_abstractmethods(PyTypeObject *type, void *context)
{ {
PyObject *mod = NULL; PyObject *mod = NULL;
/* type its self has an __abstractmethods__ descriptor (this). Don't /* type itself has an __abstractmethods__ descriptor (this). Don't return
return that. */ that. */
if (type != &PyType_Type) if (type != &PyType_Type)
mod = PyDict_GetItemString(type->tp_dict, "__abstractmethods__"); mod = PyDict_GetItemString(type->tp_dict, "__abstractmethods__");
if (!mod) { if (!mod) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment