E126 (continuation line over-indented for hanging indent) is reported on what I think should be correct formatting on line continuation in multiline with statements:
with open('foo') as foo, \
open('bar') as bar, \
open('baz') as baz:
pass
PEP8 doesn't specify this explicitly, but I believe this is a perfectly reasonable and natural way to indent such a statement. Also, IDLE automatically indents this the same way.
E126 (continuation line over-indented for hanging indent) is reported on what I think should be correct formatting on line continuation in multiline
withstatements:PEP8 doesn't specify this explicitly, but I believe this is a perfectly reasonable and natural way to indent such a statement. Also, IDLE automatically indents this the same way.