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 thomasguest
Recipients thomasguest
Date 2009-06-18.07:14:21
SpamBayes Score 4.899435e-07
Marked as misclassified No
Message-id <1245309263.43.0.625809679675.issue6305@psf.upfronthosting.co.za>
In-reply-to
Content
Python 3.0 (r30:67503, Jan  7 2009, 16:22:01) 
[GCC 4.0.1 (Apple Computer, Inc. build 5363)] on darwin

>>> from itertools import islice, count
>>> islice(count(), (1<<31) - 1)
<itertools.islice object at 0x63a0c0>
>>> islice(count(), (1<<31))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: Stop argument for islice() must be a non-negative integer or
None.
History
Date User Action Args
2009-06-18 07:14:23thomasguestsetrecipients: + thomasguest
2009-06-18 07:14:23thomasguestsetmessageid: <1245309263.43.0.625809679675.issue6305@psf.upfronthosting.co.za>
2009-06-18 07:14:22thomasguestlinkissue6305 messages
2009-06-18 07:14:21thomasguestcreate