http://stackoverflow.com/questions/739654/understanding-python-decorators
用装饰器生成HTML代码,例如:
@makebold
@makeitalic
def say():
return "Hello"
生成:
<b><i>Hello</i></b>
http://stackoverflow.com/questions/739654/understanding-python-decorators
用装饰器生成HTML代码,例如:
@makebold
@makeitalic
def say():
return "Hello"
生成:
<b><i>Hello</i></b>