Lines Matching refs:msg
15 def D(msg): argument
18 print msg
20 def D2(msg): argument
23 print msg
25 def D3(msg): argument
28 print msg
30 def D4(msg): argument
33 print msg
181 def E(msg): argument
182 print "%d: %s" % (self.lineno, msg)
296 def write(self,msg): argument
297 self.out.write(msg)
299 def writeln(self,msg): argument
300 self.out.write(msg)
307 def write(self,msg): argument
308 self.line += msg
309 D2("write '%s'" % msg)
311 def writeln(self,msg): argument
312 self.line += msg + '\n'
313 D2("write '%s\\n'"% msg)