Rob Kelly

Results 3 comments of Rob Kelly

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...