From: laike9m Date: Tue, 24 Mar 2020 01:03:06 +0000 (-0700) Subject: Updated documentation for FOR_ITER (GH-19113) X-Git-Tag: v3.9.0a6~293 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=70d9d74411c121896820e137ecd56e55c087adcc;p=thirdparty%2FPython%2Fcpython.git Updated documentation for FOR_ITER (GH-19113) Added a comma to make the sentence less confusing. --- diff --git a/Doc/library/dis.rst b/Doc/library/dis.rst index 020942b647b9..2e1cdeda953a 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*.