Lines Matching refs:msg
11 def panic(msg): argument
13 sys.stderr.write( msg )
16 def D(msg): argument
19 print msg
21 def D2(msg): argument
24 print msg
26 def D3(msg): argument
29 print msg
31 def D4(msg): argument
34 print msg
109 def E(msg): argument
110 print "%d: %s" % (self.lineno, msg)
191 def write(self,msg): argument
192 self.out.write(msg)
194 def writeln(self,msg): argument
195 self.out.write(msg)
202 def write(self,msg): argument
203 self.line += msg
204 D2("write '%s'" % msg)
206 def writeln(self,msg): argument
207 self.line += msg + '\n'
208 D2("write '%s\\n'"% msg)