summaryrefslogtreecommitdiff
path: root/Cython/Compiler/CodeGeneration.py
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2011-11-13 12:14:57 +0100
committerStefan Behnel <stefan_ml@behnel.de>2011-11-13 12:14:57 +0100
commit2d2ea33cf49ccda04f9a2a1c1bb4e25a52170649 (patch)
tree8ebe6861f3c8ad57a6d9817e4d7af26140dcbe7a /Cython/Compiler/CodeGeneration.py
parent84307315f62c2a30c3598640a29ec5307c119ae4 (diff)
downloadcython-2d2ea33cf49ccda04f9a2a1c1bb4e25a52170649.tar.gz
removed lots of unused imports, delayed some imports that are only needed for Cython specific syntax
--HG-- extra : rebase_source : a2df3675fd1efae1a1122ca9742e99ab1405fba6
Diffstat (limited to 'Cython/Compiler/CodeGeneration.py')
-rw-r--r--Cython/Compiler/CodeGeneration.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/Cython/Compiler/CodeGeneration.py b/Cython/Compiler/CodeGeneration.py
index 32efb037b..f446d9e92 100644
--- a/Cython/Compiler/CodeGeneration.py
+++ b/Cython/Compiler/CodeGeneration.py
@@ -1,7 +1,5 @@
-from Cython.Compiler.Visitor import VisitorTransform, CythonTransform
-from Cython.Compiler.ModuleNode import ModuleNode
-from Cython.Compiler.Nodes import *
-from Cython.Compiler.ExprNodes import *
+from Cython.Compiler.Visitor import VisitorTransform
+from Cython.Compiler.Nodes import StatListNode
class ExtractPxdCode(VisitorTransform):
"""