Lines Matching refs:stdout
99 stdout=sys.stdout): argument
111 self.stdout = stdout
114 if hasattr(self.stdout, 'isatty') and self.stdout.isatty():
115 self.stdout.write('\r')
117 self.stdout.write('\n')
118 self.stdout.write(str(self))
119 self.stdout.flush()
137 stdout=sys.stdout): argument
149 stdout)
159 isatty = hasattr(self.stdout, 'isatty') and self.stdout.isatty()
161 self.stdout.write('\r')
163 self.stdout.write('\n')
164 self.stdout.write(str(self))
167 self.stdout.write('\n')
169 self.stdout.write(str(key) + ' = ' + str(self.events[key]) + ' ')
171 self.stdout.write('\033[1A')
172 self.stdout.flush()