PY-9795,PY-4717 Parse Numpy-style docstrings sections and fields

This commit is contained in:
Mikhail Golubev
2015-08-10 15:57:41 +03:00
parent 524510d1a6
commit 72a3cf804d
7 changed files with 155 additions and 81 deletions

View 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