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