Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1593f50

Browse files
author
Michael W. Hudson
committed
Move a comment back to its rightful location.
1 parent 10e6e0e commit 1593f50

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Objects/object.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1176,15 +1176,15 @@ _PyObject_GetDictPtr(PyObject *obj)
11761176
return (PyObject **) ((char *)obj + dictoffset);
11771177
}
11781178

1179-
/* Generic GetAttr functions - put these in your tp_[gs]etattro slot */
1180-
11811179
PyObject *
11821180
PyObject_SelfIter(PyObject *obj)
11831181
{
11841182
Py_INCREF(obj);
11851183
return obj;
11861184
}
11871185

1186+
/* Generic GetAttr functions - put these in your tp_[gs]etattro slot */
1187+
11881188
PyObject *
11891189
PyObject_GenericGetAttr(PyObject *obj, PyObject *name)
11901190
{

0 commit comments

Comments
 (0)