mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 08:06:56 +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)
|