Rob Kelly
Rob Kelly
@rr- there's no reason we can't separate them.
Numpydoc docstrings also have an "Receives" section for values received by generators, as well as an "Other Parameters" section for seldom-used parameters. The parser uses `DocstringParam` for both of these...
I'm talking about using `DocstringMeta.args` to distinguish between parameters/attributes/whatever. In other words, rewrite `Docstring.params` as something like: ```python @property def params(self) -> T.List[DocstringParam]: return [item for item in self.meta if...