<div dir="ltr">It's great that multiple context managers can be sent to "with":<div><br></div><div>with a as b, c as d, e as f:</div><div>     suite</div><div><br></div><div>If the context mangers have a lot of text it's very hard to comply with PEP8 without resorting to "\" continuations, which are proscribed by the Google style guide.</div><div><br></div><div>Other statements like import and if support enclosing their arguments in parentheses to force aligned continuations.  Can we have the same for "with"?</div><div><br></div><div>E.g.</div><div><br></div><div>with (a as b,</div><div>         c as d,</div><div>         e as f):</div><div>    suite</div><div><br></div><div>This is a pretty minor change to the grammar and parser.</div><div><br></div><div>Best,</div><div><br></div><div>Neil</div></div>