标签:started
def trace():
if not trace.__dict__.has_key("started"):
time = datetime.now().strftime(‘%Y-%m-%d %H:%M:%S‘ )
fh.write("\n[%s] %s" % (time, str))
trace.started = True
判断这个函数有没有某个属性,用来第一次调用这个函数使用
原文地址:http://4249964.blog.51cto.com/4239964/1585866