Closed as not planned
Description
It's generally useful to explicitly call out keyword-only arguments in Python 3. Currently when using the numpydoc format, I might have a docstring containing something like
def foo(*, what):
"""Do something then do something else.
Keyword-only arguments
-------------------------
what: str
What else to do.
"""
Instead of titling the section as expected, it ends up looking something like:
- arguments (Keyword-only) –
- ---------------------- –
- what - what else to do