"Fredrik Lundh" <[EMAIL PROTECTED]> writes:
>     itertools.count() # 0-based
>     itertools.count(1) # 1-based
> 
> gives you an iterator that generates all Python integers (the behaviour
> when it exceeds sys.maxint doesn't seem to be defined, but 2.4 wraps
> around to -(sys.maxint+1))

Ugh, I'd say that's a bad bug.  It should be cleaned up to promote to
long (int/long unification you know) and documented to do that.  
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to