The python method has some serious defficiencies when applied to input files like .fvwmrc2, i.e. white space you cannot see (space vs tab) matters and cause read errors that drive you crazy…
IMO, the BlockB { line1, line2, line3_and_white_space_doesNotMatter, So_This_isValid, andSPACESORTABS_DO_NOT_MATTER} > BlockB { > line1, > line2, > line3, > line4 > } > On Sep 21, 2016, at 9:49 PM, elliot s <elliot...@gmail.com> wrote: > > << > BlockA \ > line1, \ > line2, \ > line3, \ > line4 > > Is less visually appealing and can be more difficult locate errors than > > BlockB { > line1, > line2, > line3, > line4 > } >>> > > There's the python method of blocking....using indentation. WYSIWYG > I was skeptical at first, but now i like it. > > if x: # note the : > y=z > a=1 > if n: > a=3 > b=1 > else: > b = 0 > print a,b > print y >