mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-14 07:37:00 +07:00
12 lines
82 B
Python
12 lines
82 B
Python
def method(x):
|
|
test = 1
|
|
|
|
|
|
class C:
|
|
pass
|
|
|
|
|
|
inst = C()
|
|
method(1)
|
|
method(42)
|