<p dir="ltr">I find myself "partializing" in ways partial() doesn't support more often than not. E.g.</p>
<p dir="ltr">lambda first, third: myfunc(first, 42, third)</p>
<p dir="ltr">I think it's good to have partial() in functools, but it's two orders of magnitude less common than things that should be in builtins.<br></p>
<p dir="ltr">On Sep 20, 2016 9:42 AM, "Ryan Gonzalez" <<a href="mailto:rymg19@gmail.com">rymg19@gmail.com</a>> wrote:<br>
> lambda *args, **kw: myfunc(partial_arg, *args, **kw)<br>
><br>
> which isn't more readable than just:<br>
><br>
> partial(myfunc, partial_func)<br></p>