Message 66710 - Python tracker

This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Content
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):
        ^-----------------------^
              ^-------------------------^