@@ -140,7 +140,7 @@ PyTypeObject cycle_type = {
140140 0 , /* tp_clear */
141141 0 , /* tp_richcompare */
142142 0 , /* tp_weaklistoffset */
143- PyObject_GenericGetIter , /* tp_iter */
143+ PyObject_SelfIter , /* tp_iter */
144144 (iternextfunc )cycle_next , /* tp_iternext */
145145 0 , /* tp_methods */
146146 0 , /* tp_members */
@@ -289,7 +289,7 @@ PyTypeObject dropwhile_type = {
289289 0 , /* tp_clear */
290290 0 , /* tp_richcompare */
291291 0 , /* tp_weaklistoffset */
292- PyObject_GenericGetIter , /* tp_iter */
292+ PyObject_SelfIter , /* tp_iter */
293293 (iternextfunc )dropwhile_next , /* tp_iternext */
294294 0 , /* tp_methods */
295295 0 , /* tp_members */
@@ -437,7 +437,7 @@ PyTypeObject takewhile_type = {
437437 0 , /* tp_clear */
438438 0 , /* tp_richcompare */
439439 0 , /* tp_weaklistoffset */
440- PyObject_GenericGetIter , /* tp_iter */
440+ PyObject_SelfIter , /* tp_iter */
441441 (iternextfunc )takewhile_next , /* tp_iternext */
442442 0 , /* tp_methods */
443443 0 , /* tp_members */
@@ -607,7 +607,7 @@ PyTypeObject islice_type = {
607607 0 , /* tp_clear */
608608 0 , /* tp_richcompare */
609609 0 , /* tp_weaklistoffset */
610- PyObject_GenericGetIter , /* tp_iter */
610+ PyObject_SelfIter , /* tp_iter */
611611 (iternextfunc )islice_next , /* tp_iternext */
612612 0 , /* tp_methods */
613613 0 , /* tp_members */
@@ -746,7 +746,7 @@ PyTypeObject starmap_type = {
746746 0 , /* tp_clear */
747747 0 , /* tp_richcompare */
748748 0 , /* tp_weaklistoffset */
749- PyObject_GenericGetIter , /* tp_iter */
749+ PyObject_SelfIter , /* tp_iter */
750750 (iternextfunc )starmap_next , /* tp_iternext */
751751 0 , /* tp_methods */
752752 0 , /* tp_members */
@@ -933,7 +933,7 @@ PyTypeObject imap_type = {
933933 0 , /* tp_clear */
934934 0 , /* tp_richcompare */
935935 0 , /* tp_weaklistoffset */
936- PyObject_GenericGetIter , /* tp_iter */
936+ PyObject_SelfIter , /* tp_iter */
937937 (iternextfunc )imap_next , /* tp_iternext */
938938 0 , /* tp_methods */
939939 0 , /* tp_members */
@@ -1068,7 +1068,7 @@ PyTypeObject chain_type = {
10681068 0 , /* tp_clear */
10691069 0 , /* tp_richcompare */
10701070 0 , /* tp_weaklistoffset */
1071- PyObject_GenericGetIter , /* tp_iter */
1071+ PyObject_SelfIter , /* tp_iter */
10721072 (iternextfunc )chain_next , /* tp_iternext */
10731073 0 , /* tp_methods */
10741074 0 , /* tp_members */
@@ -1217,7 +1217,7 @@ PyTypeObject ifilter_type = {
12171217 0 , /* tp_clear */
12181218 0 , /* tp_richcompare */
12191219 0 , /* tp_weaklistoffset */
1220- PyObject_GenericGetIter , /* tp_iter */
1220+ PyObject_SelfIter , /* tp_iter */
12211221 (iternextfunc )ifilter_next , /* tp_iternext */
12221222 0 , /* tp_methods */
12231223 0 , /* tp_members */
@@ -1366,7 +1366,7 @@ PyTypeObject ifilterfalse_type = {
13661366 0 , /* tp_clear */
13671367 0 , /* tp_richcompare */
13681368 0 , /* tp_weaklistoffset */
1369- PyObject_GenericGetIter , /* tp_iter */
1369+ PyObject_SelfIter , /* tp_iter */
13701370 (iternextfunc )ifilterfalse_next , /* tp_iternext */
13711371 0 , /* tp_methods */
13721372 0 , /* tp_members */
@@ -1450,7 +1450,7 @@ PyTypeObject count_type = {
14501450 0 , /* tp_clear */
14511451 0 , /* tp_richcompare */
14521452 0 , /* tp_weaklistoffset */
1453- PyObject_GenericGetIter , /* tp_iter */
1453+ PyObject_SelfIter , /* tp_iter */
14541454 (iternextfunc )count_next , /* tp_iternext */
14551455 0 , /* tp_methods */
14561456 0 , /* tp_members */
@@ -1634,7 +1634,7 @@ PyTypeObject izip_type = {
16341634 0 , /* tp_clear */
16351635 0 , /* tp_richcompare */
16361636 0 , /* tp_weaklistoffset */
1637- PyObject_GenericGetIter , /* tp_iter */
1637+ PyObject_SelfIter , /* tp_iter */
16381638 (iternextfunc )izip_next , /* tp_iternext */
16391639 0 , /* tp_methods */
16401640 0 , /* tp_members */
@@ -1741,7 +1741,7 @@ PyTypeObject repeat_type = {
17411741 0 , /* tp_clear */
17421742 0 , /* tp_richcompare */
17431743 0 , /* tp_weaklistoffset */
1744- PyObject_GenericGetIter , /* tp_iter */
1744+ PyObject_SelfIter , /* tp_iter */
17451745 (iternextfunc )repeat_next , /* tp_iternext */
17461746 0 , /* tp_methods */
17471747 0 , /* tp_members */
0 commit comments