mirror of https://github.com/python/cpython
Clarify xrange() entry.
This commit is contained in:
parent
37475a8d22
commit
67b8cad16a
|
@ -301,7 +301,8 @@ language and built-in functions.
|
||||||
terminated prematurely. To get the old behavior of :func:`input`, use
|
terminated prematurely. To get the old behavior of :func:`input`, use
|
||||||
``eval(input())``.
|
``eval(input())``.
|
||||||
|
|
||||||
* :func:`xrange` renamed to :func:`range`.
|
* :func:`xrange` renamed to :func:`range`, so :func:`range` will no longer
|
||||||
|
produce a list but an iterable yielding integers when iterated over.
|
||||||
|
|
||||||
* PEP 3113: Tuple parameter unpacking removed. You can no longer write ``def
|
* PEP 3113: Tuple parameter unpacking removed. You can no longer write ``def
|
||||||
foo(a, (b, c)): ...``. Use ``def foo(a, b_c): b, c = b_c`` instead.
|
foo(a, (b, c)): ...``. Use ``def foo(a, b_c): b, c = b_c`` instead.
|
||||||
|
|
Loading…
Reference in New Issue