Home | History | Annotate | Download | only in python2.7

Lines Matching refs:logfp

69 logfp = None            # File object to log to, if not None
84 If the global logfp is not None, it should be a file object to
87 If the global logfp is None, the global logfile may be a string
94 global logfp, log
95 if logfile and not logfp:
97 logfp = open(logfile, "a")
100 if not logfp:
108 logfp.write(fmt%args + "\n")