You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Following this PEP and this one, Python allows
to force the way one passes arguments in functions or class methods, a.k.a keyword-only or positional-only arguments. (Requires Python >= 3.8)
It'd be nice to enhance the current code with the ability to parse * and / in the function's signature.
Thanks!
The text was updated successfully, but these errors were encountered:
Describe the request
Following this PEP and this one, Python allows
to force the way one passes arguments in functions or class methods, a.k.a keyword-only or positional-only arguments. (Requires Python >= 3.8)
It'd be nice to enhance the current code with the ability to parse
*
and/
in the function's signature.Thanks!
The text was updated successfully, but these errors were encountered: