diff options
| author | laike9m <laike9m@users.noreply.github.com> | 2020-03-23 18:03:06 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-24 09:03:06 +0800 |
| commit | 70d9d74411c121896820e137ecd56e55c087adcc (patch) | |
| tree | eb2616c26f9324d7719888e526adcab9898a9da0 | |
| parent | 188078c39dec24aa5b3f2073bdc9a68ebaae42de (diff) | |
| download | cpython-git-70d9d74411c121896820e137ecd56e55c087adcc.tar.gz | |
Updated documentation for FOR_ITER (GH-19113)
Added a comma to make the sentence less confusing.
| -rw-r--r-- | Doc/library/dis.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index 020942b647..2e1cdeda95 100644 --- a/Doc/library/dis.rst +++ b/Doc/library/dis.rst @@ -986,7 +986,7 @@ All of the following opcodes use their arguments. TOS is an :term:`iterator`. Call its :meth:`~iterator.__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 TOS is popped, and the byte + it). If the iterator indicates it is exhausted, TOS is popped, and the byte code counter is incremented by *delta*. |
