Lines Matching full:outcome
1233 Run the examples in `test`. Write the outcome of each example
1248 SUCCESS, FAILURE, BOOM = range(3) # `outcome` state
1300 outcome = FAILURE # guilty until proved innocent or insane
1306 outcome = SUCCESS
1318 outcome = BOOM
1322 outcome = SUCCESS
1330 outcome = SUCCESS
1332 # Report the outcome.
1333 if outcome is SUCCESS:
1336 elif outcome is FAILURE:
1340 elif outcome is BOOM:
1346 assert False, ("unknown outcome", outcome)