mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
Allows to use any expression as a decorator GitOrigin-RevId: e92af1ebd2c4d7024971fd4542bfe52640faaa26
10 lines
106 B
Python
10 lines
106 B
Python
@x[0]
|
|
@y:=x[0]
|
|
@my_decorator
|
|
def say_whee():
|
|
print("Whee!")
|
|
|
|
|
|
@y,x
|
|
def say_whee2():
|
|
print("Whee!") |