In article <[email protected]>, Ben Finney <[email protected]> wrote:
> Roy Smith <[email protected]> writes: > > > > p = Subprocess.Popen(shlex.split(cmd), > > > stdout=subprocess.PIPE, > > > stderr=subprocess.PIPE) > > That is PEP 8 conformant, but I find it hurts maintainability: it is far > too much indentation. Horizontal space is costly, because so much > indentation severely limits the length of names etc. that you can use on > the continuation lines. It only does that if you limit yourself to 80 character lines. -- https://mail.python.org/mailman/listinfo/python-list
