mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
22 lines
319 B
Python
22 lines
319 B
Python
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
|