0
我有一個類,讓所謂的WindCMD
,它與裝飾功能如何獲得函數的裝飾器?
@options(
[
make_option('-s', '--windspeed',
default = 999,
help = "Set the wind speed."
),
make_option('-d', '--winddir',
default = 999,
help = "Set the wind direction."
)
]
)
def do_set_wind_manually(self, line, opts = None):
有一種可能性,通過使用__dict__
獲得類的所有功能,但我怎麼能得到的功能裝飾和選擇?