码迷,mamicode.com
首页 > 其他好文 > 详细

decorator

时间:2014-10-24 14:47:24      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:python

def log(func):
	def wrapper(*args,**kw):
		print 'call %s():'%func.__name__
		return func(*args,**kw)
	return wrapper
@log
def now():
	print 'hello!'
now()

decorator

标签:python

原文地址:http://blog.csdn.net/dapeng0112/article/details/40425965

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!