Renamed PyObject_GenericGetIter to PyObject_SelfIter

to more accurately describe what the function does.

Suggested by Thomas Wouters.
This commit is contained in:
Raymond Hettinger 2003-03-17 19:46:11 +00:00
parent ab75840cd0
commit 1da1dbf458
13 changed files with 25 additions and 25 deletions

View file

@ -2450,7 +2450,7 @@ PyTypeObject PyListIter_Type = {
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
PyObject_GenericGetIter, /* tp_iter */
PyObject_SelfIter, /* tp_iter */
(iternextfunc)listiter_next, /* tp_iternext */
0, /* tp_methods */
0, /* tp_members */