mirror of
https://github.com/python/cpython.git
synced 2026-05-18 02:15:28 -04:00
16570f59ca
whole construct away, even when an 'else' clause is present::
while 0:
print("no")
else:
print("yes")
did not generate any code at all.
Now the compiler emits the 'else' block, like it already does for 'if' statements.
Will backport.