mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
PEP 3114: rename .next() to .__next__() and add next() builtin.
This commit is contained in:
parent
4d2adcca52
commit
a18af4e7a2
83 changed files with 495 additions and 425 deletions
|
|
@ -529,10 +529,10 @@ Set byte code counter to \var{target}.
|
|||
\end{opcodedesc}
|
||||
|
||||
\begin{opcodedesc}{FOR_ITER}{delta}
|
||||
\code{TOS} is an iterator. Call its \method{next()} method. If this
|
||||
yields a new value, push it on the stack (leaving the iterator below
|
||||
it). If the iterator indicates it is exhausted \code{TOS} is
|
||||
popped, and the byte code counter is incremented by \var{delta}.
|
||||
\code{TOS} is an iterator. Call its \method{__next__()} method. If this
|
||||
yields a new value, push it on the stack (leaving the iterator below it). If
|
||||
the iterator indicates it is exhausted \code{TOS} is popped, and the byte code
|
||||
counter is incremented by \var{delta}.
|
||||
\end{opcodedesc}
|
||||
|
||||
%\begin{opcodedesc}{FOR_LOOP}{delta}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue