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