diff options
author | Guido van Rossum <guido@python.org> | 2002-06-13 17:59:51 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2002-06-13 17:59:51 (GMT) |
commit | fea59e7f766b950ccd55f9eee87d4032a768fdcc (patch) | |
tree | b668da1c6ff6ce390fa4ee95016a7af7c184208c /Doc | |
parent | efb9097add12d372f3a41c6fa884235ba2291248 (diff) | |
download | cpython-fea59e7f766b950ccd55f9eee87d4032a768fdcc.zip cpython-fea59e7f766b950ccd55f9eee87d4032a768fdcc.tar.gz cpython-fea59e7f766b950ccd55f9eee87d4032a768fdcc.tar.bz2 |
The opcode FOR_LOOP no longer exists.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libdis.tex | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/Doc/lib/libdis.tex b/Doc/lib/libdis.tex index 38b3464..90f83a3 100644 --- a/Doc/lib/libdis.tex +++ b/Doc/lib/libdis.tex @@ -556,13 +556,9 @@ 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} -This opcode is obsolete. -%Iterate over a sequence. TOS is the current index, TOS1 the sequence. -%First, the next element is computed. If the sequence is exhausted, -%increment byte code counter by \var{delta}. Otherwise, push the -%sequence, the incremented counter, and the current item onto the stack. -\end{opcodedesc} +%\begin{opcodedesc}{FOR_LOOP}{delta} +%This opcode is obsolete. +%\end{opcodedesc} %\begin{opcodedesc}{LOAD_LOCAL}{namei} %This opcode is obsolete. |