mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +07:00
10 lines
54 B
Python
10 lines
54 B
Python
|
|
class A:
|
|
pass
|
|
|
|
def foo(A=1):
|
|
pass
|
|
|
|
foo(A=2)
|
|
|