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