HomeSort by relevance Sort by last modified time
    Searched refs:logfp (Results 1 - 4 of 4) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_cgi.py 191 cgi.logfp = StringIO()
194 self.assertEqual(cgi.logfp.getvalue(), "Testing initlog 1\nTesting log 2\n")
196 cgi.logfp = None
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_cgi.py 191 cgi.logfp = StringIO()
194 self.assertEqual(cgi.logfp.getvalue(), "Testing initlog 1\nTesting log 2\n")
196 cgi.logfp = None
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cgi.py 69 logfp = None # File object to log to, if not None variable
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")
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cgi.py 69 logfp = None # File object to log to, if not None variable
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")
    [all...]

Completed in 121 milliseconds