mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Renamed PyObject_GenericGetIter to PyObject_SelfIter
to more accurately describe what the function does. Suggested by Thomas Wouters.
This commit is contained in:
parent
ab75840cd0
commit
1da1dbf458
13 changed files with 25 additions and 25 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue