[Python-checkins] r85195 - in python/branches/release31-maint: Objects/typeobject.c

benjamin.peterson python-checkins at python.org
Sun Oct 3 04:19:18 CEST 2010


Author: benjamin.peterson
Date: Sun Oct  3 04:19:18 2010
New Revision: 85195

Log:
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
........


Modified:
   python/branches/release31-maint/   (props changed)
   python/branches/release31-maint/Objects/typeobject.c

Modified: python/branches/release31-maint/Objects/typeobject.c
==============================================================================
--- python/branches/release31-maint/Objects/typeobject.c	(original)
+++ python/branches/release31-maint/Objects/typeobject.c	Sun Oct  3 04:19:18 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