Lines Matching refs:executed
40 executed::
99 true and false); then that suite is executed (and no other part of the
100 :keyword:`if` statement is executed or evaluated). If all expressions are
101 false, the suite of the :keyword:`else` clause, if present, is executed.
124 suite of the :keyword:`else` clause, if present, is executed and the loop
131 A :keyword:`break` statement executed in the first suite terminates the loop
133 statement executed in the first suite skips the rest of the suite and goes back
162 then executed once for each item provided by the iterator, in the order returned
165 executed. When the items are exhausted (which is immediately when the sequence
167 the :keyword:`else` clause, if present, is executed, and the loop terminates.
173 A :keyword:`break` statement executed in the first suite terminates the loop
175 statement executed in the first suite skips the rest of the suite and continues
248 exception occurs in the :keyword:`try` clause, no exception handler is executed.
268 the except clause's suite is executed. All except clauses must have an
297 Before an except clause's suite is executed, details about the exception are
311 The optional :keyword:`else` clause is executed if and when control flows off
318 :keyword:`try` clause is executed, including any :keyword:`except` and
321 is executed. If there is a saved exception it is re-raised at the end of the
345 executed in the :keyword:`try` suite of a :keyword:`try`...\ :keyword:`finally`
346 statement, the :keyword:`finally` clause is also executed 'on the way out.' A
352 statement executed. Since the :keyword:`finally` clause always executes, a
353 :keyword:`return` statement executed in the :keyword:`finally` clause will
354 always be the last one executed::
409 #. The suite is executed.
489 The function definition does not execute the function body; this gets executed
526 definition is executed.** This means that the expression is evaluated once, when
563 executed. Annotations may be evaluated in a different order than they appear in
580 executed inside a function definition defines a local function that can be
627 The class's suite is then executed in a new execution frame (see :ref:`naming`),