<div dir="ltr"><div class="gmail_quote"><div dir="ltr">On Tue, Sep 20, 2016 at 9:18 PM Stephan Houben <<a href="mailto:stephanh42@gmail.com">stephanh42@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div>I must admit I am a bit partial to partial, you can do fun things like this:</div><div><br></div><div>>>> from functools import partial</div><div>>>> @partial(partial, partial)</div><div>... def add(x, y):</div><div>...     return x+y</div><div>...</div><div>>>> add(3)(4)</div><div>7</div><div><br></div><div>I suppose that isn't exactly going to convince Guide to put it in builtins, though.</div></div><div dir="ltr"><div><br></div></div></blockquote><div>I quietly LOLed, but note that for three arguments you'll need</div><div><br></div><div>@partial(partial, partial(partial, partial)) <br></div><div>def add(a, b, c): return a + b + c</div><div><br></div><div>>>> add(1)(2)(3)</div><div>6</div><div><br></div><div>So @curry is the transitive closure or something :)</div><div><br></div><div>Elazar</div><div><br></div></div></div>