Exemplo n.º 1
0
 def assertExpr(self, text, asm):
     compiler.init(inp=StringIO(text))
     co = compiler.compile()
     instructions_match(co, asm)
Exemplo n.º 2
0
 def assertExpr(self, text, asm):
     co = self.compileExpr(text)
     instructions_match(co, asm)