I'm trying to use reST-style docstrings, i.e.
def foo(bar):
    """a method that takes a bar
    :param bar: a Bar instance
    :type bar: Bar
Is there a standard way to document yields? I looked at http://www.sphinx-doc.org/en/master/usage/restructuredtext/domains.html#info-field-lists, a-la this question [ https://stackoverflow.com/questions/5334531/python-documentation-standard-for-docstring ], but no luck. I'm imagining something like,
:yields: transformed bars
:yield type: Baz
 
     
     
    