Move a comment back to its rightful location.
diff --git a/Objects/object.c b/Objects/object.c
index d8e403b..721a6ac 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -1176,8 +1176,6 @@
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 @@
return obj;
}
+/* Generic GetAttr functions - put these in your tp_[gs]etattro slot */
+
PyObject *
PyObject_GenericGetAttr(PyObject *obj, PyObject *name)
{