mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 20:20:56 +07:00
10 lines
125 B
Python
10 lines
125 B
Python
class C:
|
|
pass
|
|
|
|
|
|
def method(foo2, bar1, foo, foo1, bar):
|
|
print(foo2, bar1)
|
|
|
|
|
|
c = C()
|
|
method(c.foo, c.bar, 1, 2, bar=3) |