autoDocstring icon indicating copy to clipboard operation
autoDocstring copied to clipboard

[feature request] add support for positional-only and keyword-only arguments

Open Clement-Lelievre opened this issue 1 year ago • 0 comments

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!

Clement-Lelievre avatar May 11 '23 15:05 Clement-Lelievre