mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-15 20:26:04 +07:00
11 lines
148 B
Python
11 lines
148 B
Python
__author__ = 'ktisha'
|
|
|
|
def foo(x):
|
|
return x
|
|
|
|
class A():
|
|
|
|
@staticmethod
|
|
@accepts(int, int)
|
|
def my_<caret>method():
|
|
print "Smth" |