Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
# test while conditions which are optimised by the compiler
while 0:
print(0)
else:
print(1)
while 1:
print(2)
break
while 2:
print(3)
while -1:
print(4)
while False:
print('a')
print('b')
while True:
while not False:
while not True: