<div dir="ltr"><div><div><div><div>Also, I think some people are too fundamentalist about rejecting all uses of \ to break long lines. When combined with proper indentation of the continuation line, if there is no alternative, I think it looks better than artifically introduced parentheses. At least if there's only one or two continuation lines. E.g.<br>```<br></div>very_long_variable_name = \<br></div>    very_long_function(very_long_argument_list)<br>```<br></div>looks better to me than<br>```<br>very_long_variable_name = (<br>    very_long_function(very_long_argument_list))<br>```<br></div>I'm just saying, there's a reason PEP 8's motto is "A Foolish Consistency is the Hobgoblin of Little Minds".<br></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Apr 26, 2016 at 8:22 AM, Barry Warsaw <span dir="ltr"><<a href="mailto:barry@python.org" target="_blank">barry@python.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On Apr 25, 2016, at 12:36 PM, Cory Benfield wrote:<br>
<br>
>This request has come up a couple of times before.<br>
</span>...<br>
<span class="">>The upshot is: the restriction on context managers with parentheses like this<br>
>is relatively likely to stick around.<br>
<br>
</span>I highly recommend looking at contextlib.ExitStack.  Once I started using<br>
this idiom, I found I wanted the requested with-feature much less frequently.<br>
<br>
Cheers,<br>
-Barry<br>
<br>_______________________________________________<br>
Python-ideas mailing list<br>
<a href="mailto:Python-ideas@python.org">Python-ideas@python.org</a><br>
<a href="https://mail.python.org/mailman/listinfo/python-ideas" rel="noreferrer" target="_blank">https://mail.python.org/mailman/listinfo/python-ideas</a><br>
Code of Conduct: <a href="http://python.org/psf/codeofconduct/" rel="noreferrer" target="_blank">http://python.org/psf/codeofconduct/</a><br></blockquote></div><br><br clear="all"><br>-- <br><div class="gmail_signature">--Guido van Rossum (<a href="http://python.org/~guido" target="_blank">python.org/~guido</a>)</div>
</div>