Lines Matching full:write
17 """A file-like object used to write a single logical stream of data into
50 def write(self, data, implicit=False): member in LogfileStream
51 """Write data to the log stream.
54 data: The data to write tot he file.
65 self.logfile.write(self, data, implicit)
67 self.chained_file.write(data)
132 self.chained_file.write(msg)
133 self.logfile.write(self, msg)
164 self.logfile.write(self, output)
166 self.chained_file.write(output)
212 fn: The filename to write to.
229 self.f.write('''\
308 self.f.write('''\
341 """Write HTML to the log file to terminate the current stream's data.
353 self.f.write('</pre>\n')
354 self.f.write('<div class="stream-trailer block-trailer">End stream: ' +
356 self.f.write('</div>\n')
357 self.f.write('</div>\n')
361 """Write a note or one-off message to the log file.
374 self.f.write('<div class="' + note_type + '">\n')
375 self.f.write('<pre>')
377 self.f.write('<a href="#%s">' % anchor)
378 self.f.write(self._escape(msg))
380 self.f.write('</a>')
381 self.f.write('\n</pre>\n')
382 self.f.write('</div>\n')
403 self.f.write('<div class="section block" id="' + anchor + '">\n')
404 self.f.write('<div class="section-header block-header">Section: ' +
406 self.f.write('<div class="section-content block-content">\n')
434 self.f.write('<div class="section-trailer block-trailer">' +
436 self.f.write('</div>\n')
437 self.f.write('</div>\n')
462 """Write an error note to the log file.
474 """Write an warning note to the log file.
501 """Write an informational note to the log file.
513 """Write an action note to the log file.
528 """Write a timestamp to the log file.
550 """Write a note to the log file describing test(s) which passed.
563 """Write a note to the log file describing test(s) which passed.
576 """Write a note to the log file describing skipped test(s).
589 """Write a note to the log file describing xfailed test(s).
602 """Write a note to the log file describing xpassed test(s).
615 """Write a note to the log file describing failed test(s).
631 write a single stream's data to the log file. The implementation will
661 def write(self, stream, data, implicit=False): member in Logfile
662 """Write stream data into the log file.
682 self.f.write('<div class="stream block">\n')
683 self.f.write('<div class="stream-header block-header">Stream: ' +
685 self.f.write('<div class="stream-content block-content">\n')
686 self.f.write('<pre>')
688 self.f.write('<span class="implicit">')
689 self.f.write(self._escape(data))
691 self.f.write('</span>')