[issue30941] Missing line in example program

2017-07-16 Thread R. David Murray
R. David Murray added the comment: This is the standard way that we write examples. Sprinkling in extra blank lines everywhere would make the examples less readable. One you've learned how the command interpreter works, the examples are clear, so you each beginner only has to learn this once

[issue30941] Missing line in example program

2017-07-16 Thread Luc Bougé
New submission from Luc Bougé: On page , the following program is listed. It raises a syntactic error. An empty line is missing after "... n += val" to close the loop body. >>> # iteration >>> n = 0 >>> for val in values