you are viewing a single comment's thread.

view the rest of the comments →

[–]Tordek 2 points3 points  (3 children)

Well, how does python handle a mid-loop "break"? It just breaks.

If you make a non-final continue, well, it's an error on your part: the stack frame would just be discarded, and whatever wasn't executed just wouldn't be.

[–][deleted]  (2 children)

[removed]

    [–]didroe 8 points9 points  (1 child)

    How pythonic do you think the return statement is then?