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 belopolsky
Recipients belopolsky, mark.dickinson
Date 2008-04-25.17:32:06
SpamBayes Score 0.28067243
Marked as misclassified No
Message-id <d38f5330804251032tae9c886s9b0abb3de9b73b95@mail.gmail.com>
In-reply-to <1209142520.32.0.6963312679.issue2690@psf.upfronthosting.co.za>
Content
On Fri, Apr 25, 2008 at 12:55 PM, Mark Dickinson <report@bugs.python.org> wrote:
..
>  I don't much like this aspect of the change:   there are uses for
>
>  for i in range(ridiculously_large_number):

For this application, I would use "for i in itertools.count():"
instead.  The only caveat is that while count() lets you specify the
start, it does not provide for a step.   If that is a problem, I would
rather add step to count().
History
Date User Action Args
2008-04-25 17:32:08belopolskysetspambayes_score: 0.280672 -> 0.28067243
recipients: + belopolsky, mark.dickinson
2008-04-25 17:32:07belopolskylinkissue2690 messages
2008-04-25 17:32:06belopolskycreate