summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2021-07-26 10:59:39 +0200
committerStefan Behnel <stefan_ml@behnel.de>2021-07-26 17:49:00 +0200
commit4c6364d92440582600aca9029c1e1152771336ed (patch)
tree2b31591323daa4429ef3580eed39ba1f5aacebf1
parent39b72b435697d25785bf4b142abdf37cf89ebcae (diff)
downloadcython-4c6364d92440582600aca9029c1e1152771336ed.tar.gz
Fix some imports.
-rw-r--r--Cython/Build/Inline.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Cython/Build/Inline.py b/Cython/Build/Inline.py
index c56701b58..15d26dbf8 100644
--- a/Cython/Build/Inline.py
+++ b/Cython/Build/Inline.py
@@ -13,7 +13,8 @@ import Cython
from ..Compiler.Main import Context
from ..Compiler.Options import default_options
-from ..Compiler.ParseTreeTransforms import CythonTransform, SkipDeclarations, EnvTransform
+from ..Compiler.Visitor import CythonTransform, EnvTransform
+from ..Compiler.ParseTreeTransforms import SkipDeclarations
from ..Compiler.TreeFragment import parse_from_strings
from ..Compiler.StringEncoding import _unicode
from .Dependencies import strip_string_literals, cythonize, cached_function