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

@ -1345,7 +1345,7 @@ static PyTypeObject LogReaderType = {
0, /* tp_clear */
0, /* tp_richcompare */
0, /* tp_weaklistoffset */
PyObject_GenericGetIter, /* tp_iter */
PyObject_SelfIter, /* tp_iter */
(iternextfunc)logreader_tp_iternext,/* tp_iternext */
logreader_methods, /* tp_methods */
logreader_members, /* tp_members */