time().unit是一种内置的时间格式函数吗
这是改正之后的,上一个答案里面 in 前面要加一个空格才能通过。至于为什么time().unit能通过我也不知道,自己乱试的,也许内置有这个时间格式函数 def performance(unit): def performance_decorator(f): def fn(x): print 'call'+f._name_+'() in',time().unit return f(x) return fn return performance_decorator