mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
To do so I search for the line inside a docstring that starts with either "def " or "class " and has indentation less than that of opening docstring quotes.
16 lines
192 B
Python
16 lines
192 B
Python
def f():
|
|
"""
|
|
|
|
Monospaced ``func`` and func
|
|
|
|
Example:
|
|
|
|
::
|
|
|
|
def func():
|
|
pass
|
|
|
|
class Class():
|
|
pass
|
|
"""
|