]> granicus.if.org Git - python/commitdiff
Move a comment back to its rightful location.
authorMichael W. Hudson <mwh@python.net>
Tue, 14 Sep 2004 17:09:47 +0000 (17:09 +0000)
committerMichael W. Hudson <mwh@python.net>
Tue, 14 Sep 2004 17:09:47 +0000 (17:09 +0000)
Objects/object.c

index d8e403b52deeab4f81d05fafe41c80991a18c37f..721a6ac75c401bb4647f25534e46ecc61f874be8 100644 (file)
@@ -1176,8 +1176,6 @@ _PyObject_GetDictPtr(PyObject *obj)
        return (PyObject **) ((char *)obj + dictoffset);
 }
 
-/* Generic GetAttr functions - put these in your tp_[gs]etattro slot */
-
 PyObject *
 PyObject_SelfIter(PyObject *obj)
 {
@@ -1185,6 +1183,8 @@ PyObject_SelfIter(PyObject *obj)
        return obj;
 }
 
+/* Generic GetAttr functions - put these in your tp_[gs]etattro slot */
+
 PyObject *
 PyObject_GenericGetAttr(PyObject *obj, PyObject *name)
 {