<div dir="ltr">I've been working on the patch for PEP 448.  Are the restrictions on the order of arguments in a function call partially or fully lifted?<div><br></div><div><br></div><div>Currently, we can do:</div><div>def f(a, b, c, d):</div><div>    pass</div><div><br></div><div>f(1, d=4, *[1,2], 2, **{})</div><div><br></div><div>After PEP 448 can we do:</div><div><br></div><div>f(1, d=4, *[2], c=3, **{})<br></div><div><br></div><div>?</div></div>