"Mark Hahn" <mchahn / facelink.com> writes: > I hate it when I see a third of my lines filled up with closing lines > (noise), and I don't like the column restrictions that Python forces on you. > This solution would have the clean look of python without the column line-up > restriction. What column line-up restriction would that be? This is perfectly legal: if 1: # 8-space indent ... elif 1: # 2-space indent ... else: # 4-space indent ... Inconsistent and goofy, but legal. The only limitation is that the lines in each block are indented to the same level, and there seems no practical reason to break that rule. --amk