mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-04 20:30:42 +07:00
PY-9795,PY-4717 Parse Numpy-style docstrings sections and fields
This commit is contained in:
14
python/testData/docstrings/simpleGoogleDocString.py
Normal file
14
python/testData/docstrings/simpleGoogleDocString.py
Normal file
@@ -0,0 +1,14 @@
|
||||
def func(x, y, *args, **kwargs):
|
||||
"""Summary
|
||||
|
||||
Parameters:
|
||||
x (int) : first parameter
|
||||
y: second parameter
|
||||
with longer description
|
||||
|
||||
Raises:
|
||||
Exception: if anything bad happens
|
||||
Returns:
|
||||
None: always
|
||||
"""
|
||||
pass
|
||||
Reference in New Issue
Block a user