Sybren Stuvel wrote: > I just read the PEP where my way of alignment is under a 'NO' header. > Too bad, since I think it can make things a lot clearer.
One reason is such code changes too much on code edits:
foo = 'bar'
foobar = 42
azimov = 3
to:
foo = 'bar'
something = 42
azimov = 3
which makes code differences hard to read.
--Scott David Daniels
[EMAIL PROTECTED]
--
http://mail.python.org/mailman/listinfo/python-list
