#7721: replace code that works only in 2.7+ with equivalent.

This commit is contained in:
Georg Brandl 2010-04-05 11:46:16 +00:00
parent e2a5daa5e3
commit 9bfb628d71
1 changed files with 2 additions and 2 deletions

View File

@ -1390,8 +1390,8 @@ available. They are listed here in alphabetical order.
restricts all arguments to native C longs ("short" Python integers), and
also requires that the number of elements fit in a native C long. If a
larger range is needed, an alternate version can be crafted using the
:mod:`itertools` module: ``islice(count(start, step),
(stop-start+step-1)//step)``.
:mod:`itertools` module: ``takewhile(lambda x: x<stop, (start+i*step
for i in count()))``.
.. function:: zip([iterable, ...])