首页 > 代码库 > 判断这个函数有没有某个属性,用来第一次调用这个函数使用

判断这个函数有没有某个属性,用来第一次调用这个函数使用

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


判断这个函数有没有某个属性,用来第一次调用这个函数使用