pytholite/compiler: cleanup print statements
This commit is contained in:
parent
39c7dc7d63
commit
370bab1190
|
@ -300,14 +300,8 @@ def make_pytholite(func):
|
||||||
symdict = func.__globals__.copy()
|
symdict = func.__globals__.copy()
|
||||||
registers = []
|
registers = []
|
||||||
|
|
||||||
print("ast:")
|
|
||||||
print(ast.dump(tree))
|
|
||||||
|
|
||||||
states = _Compiler(symdict, registers).visit_top(tree)
|
states = _Compiler(symdict, registers).visit_top(tree)
|
||||||
|
|
||||||
print("compilation result:")
|
|
||||||
print(states)
|
|
||||||
|
|
||||||
regf = Fragment()
|
regf = Fragment()
|
||||||
for register in registers:
|
for register in registers:
|
||||||
register.finalize()
|
register.finalize()
|
||||||
|
|
Loading…
Reference in New Issue