Move a comment back to its rightful location.

This commit is contained in:
Michael W. Hudson 2004-09-14 17:09:47 +00:00
parent 10e6e0e61a
commit 1593f502e8
1 changed files with 2 additions and 2 deletions

View File

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