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.

Author rhettinger
Recipients rhettinger, scott.dial
Date 2008-05-12.06:23:53
SpamBayes Score 0.29839912
Marked as misclassified No
Message-id <1210573434.96.0.622629862132.issue2831@psf.upfronthosting.co.za>
In-reply-to
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):
        ^-----------------------^
              ^-------------------------^
History
Date User Action Args
2008-05-12 06:23:55rhettingersetspambayes_score: 0.298399 -> 0.29839912
recipients: + rhettinger, scott.dial
2008-05-12 06:23:55rhettingersetspambayes_score: 0.298399 -> 0.298399
messageid: <1210573434.96.0.622629862132.issue2831@psf.upfronthosting.co.za>
2008-05-12 06:23:54rhettingerlinkissue2831 messages
2008-05-12 06:23:53rhettingercreate