Le 20 sept. 2016 18:42, "Ryan Gonzalez" <rymg19@gmail.com> a écrit :
> Doing something like:
>
> lambda x, y: myfunc(partial_arg, x, y)
>
> is more error-prone to changes in myfunc's signature.

No, if the signature of the function changes, then the signature of the partial would also change. The risk is the same.

Jonathan