<div dir="ltr"><br><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
But maybe it could be extended to include the following variant:<br>
<br>
    a, b, *() = iterable<br>
<br>
</blockquote><div><br></div><div>Python already supports this odd syntax<br><br>    a, b, *[] = iterable <br><br></div><div>because it interprets the [] not as an empty list, but as an empty "list of identifiers". Maybe it could be used for something useful.<br>

<br></div><div>BTW, the del syntax has the same "problem"<br><br></div><div>    del a, b, (c,), [d], []<br></div></div><br><br></div></div>