Javascript also lets you break lines. For example, this does what you want:<br><br>    return 1<br>        + 5<br><br>Whereas this does not<br><br>    return<br>        1 + 5<br><br>Of course, Python would have no such problem, because you could make both cases unambiguous due to the indent.<br>

<br>Devin<br><br><div class="gmail_quote">On Thu, Aug 11, 2011 at 3:17 PM, Paul Colomiets <span dir="ltr"><<a href="mailto:paul@colomiets.name">paul@colomiets.name</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

Hi Matt,<br>
<div class="im"><br>
On Thu, Aug 11, 2011 at 5:28 PM, Matt Joiner <<a href="mailto:anacrolix@gmail.com">anacrolix@gmail.com</a>> wrote:<br>
</div><div class="im">> +0.5<br>
><br>
> The "trailing \" workaround is nonobvious. Wrapping in () is noisy and<br>
> already heavily used by other syntactical structures. Since a final<br>
> ':' is needed anyway, i think this would be great.<br>
><br>
> if a<br>
>  and b<br>
>  or c:<br>
>  do stuff()<br>
><br>
</div>If you really think so, try writing some coffeescript (remember to<br>
obey 79 chars limit). Coffeescript is amasing, but it lacks<br>
strictness of python. So you really don't know how to break line,<br>
and it really takes time to figure out right way each time you need<br>
it.<br>
<br>
--<br>
<font color="#888888">Paul<br>
</font><div><div></div><div class="h5">_______________________________________________<br>
Python-ideas mailing list<br>
<a href="mailto:Python-ideas@python.org">Python-ideas@python.org</a><br>
<a href="http://mail.python.org/mailman/listinfo/python-ideas" target="_blank">http://mail.python.org/mailman/listinfo/python-ideas</a><br>
</div></div></blockquote></div><br>