<div dir="ltr"><div class="gmail_extra">That is a good point.  Nevermind then.<br></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Fri, Oct 28, 2016 at 12:20 PM, David Mertz <span dir="ltr"><<a href="mailto:mertz@gnosis.cx" target="_blank">mertz@gnosis.cx</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><p dir="ltr">This seems pretty nonsensical to me. Ternaries are not only used in simple assignments.</p>
<p dir="ltr">E.g. 'myfunc(a, b if pred else c, d)' is common and obvious.</p>
<p dir="ltr">'myfunc(a, b if pred, d)' is strange with no obvious semantics.</p>
<div class="gmail_extra"><br><div class="gmail_quote"><div><div class="h5">On Oct 28, 2016 11:29 AM, "Todd" <<a href="mailto:toddrjen@gmail.com" target="_blank">toddrjen@gmail.com</a>> wrote:<br type="attribution"></div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="h5"><div dir="ltr"><div><div><div><div><div>The null-coalescing discussion made me think about the current ternary "x = a if b else c" expression.  In normal "if / else" clauses, the "else" is optional.  I propose doing the same thing with ternary expressions (although I don't know what the result would be called, a "binary expression"?)<br><br></div>The idea would be to allow this syntax:<br><br></div>x = a if b<br><br></div>Which would be equivalent to:<br><br></div>x = a if b else x<br><br></div>I think this would be useful syntax.  In particular, I see it being useful for default value checking, but can also be used to override the result of particular corner cases from functions or methods..<br></div>
<br></div></div><span class="">______________________________<wbr>_________________<br>
Python-ideas mailing list<br>
<a href="mailto:Python-ideas@python.org" target="_blank">Python-ideas@python.org</a><br>
<a href="https://mail.python.org/mailman/listinfo/python-ideas" rel="noreferrer" target="_blank">https://mail.python.org/mailma<wbr>n/listinfo/python-ideas</a><br>
Code of Conduct: <a href="http://python.org/psf/codeofconduct/" rel="noreferrer" target="_blank">http://python.org/psf/codeofco<wbr>nduct/</a><br></span></blockquote></div></div>
</blockquote></div><br></div></div>