mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
Now when parse docstring we take into account the block type. For OPTIONAL_TYPE sections such as Returns and Yields we don't require additional indent for lines following the summary. GitOrigin-RevId: 5dd7adf5f9042204a29b731a3a7379cc3c743af9
14 lines
410 B
Python
14 lines
410 B
Python
def fo<the_ref>o():
|
|
"""
|
|
Returns
|
|
-------
|
|
bool
|
|
True if successful, False otherwise.
|
|
|
|
The return type is optional and may be specified at the beginning of
|
|
the Returns section followed by a colon.
|
|
|
|
The Returns section may span multiple lines and paragraphs.
|
|
Following lines should be indented to match the first line.
|
|
"""
|
|
pass |