Explorar el Código

Fixed import errors.

Taddeus Kroes hace 14 años
padre
commit
0432a8b0b6
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
  1. 1 1
      src/dataflow.py
  2. 1 1
      tests/test_optimize.py

+ 1 - 1
src/dataflow.py

@@ -1,6 +1,6 @@
 from copy import copy
 
-from utils import Block
+from statement import Block
 
 
 class BasicBlock(Block):

+ 1 - 1
tests/test_optimize.py

@@ -1,7 +1,7 @@
 import unittest
 
 from src.optimize import optimize_global
-from src.utils import Statement as S, Block as B
+from src.statement import Statement as S, Block as B
 
 
 class TestOptimize(unittest.TestCase):