I'm using Python 3.6. I noticed that the following is not allowed:
while something:
# do something
# This is an invalid syntax
break if condition else pass
Since conditional expressions are allowed since v2.5, why is this usage not permitted?