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()
|
||||
registers = []
|
||||
|
||||
print("ast:")
|
||||
print(ast.dump(tree))
|
||||
|
||||
states = _Compiler(symdict, registers).visit_top(tree)
|
||||
|
||||
print("compilation result:")
|
||||
print(states)
|
||||
|
||||
regf = Fragment()
|
||||
for register in registers:
|
||||
register.finalize()
|
||||
|
|
Loading…
Reference in New Issue