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
135 def E(msg): argument
136 print "%d: %s" % (self.lineno, msg)
245 def write(self,msg): argument
246 self.out.write(msg)
248 def writeln(self,msg): argument
249 self.out.write(msg)
256 def write(self,msg): argument
257 self.line += msg
258 D2("write '%s'" % msg)
260 def writeln(self,msg): argument
261 self.line += msg + '\n'
262 D2("write '%s\\n'"% msg)