Message 66710 - Python tracker
Forget the part about METH_O. That was incorrect.
Another idea to order the positional args as ([start,], iterator).
That corresponds to with range([start,] stop) and it matches the output
order (number, element):
for i, element in enumerate(10, iterable):
^-----------------------^
^-------------------------^