From 23c28eff6070efbbe2f9f05d4db35de7fe9b9615 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Wed, 12 Nov 2008 08:04:16 +0100 Subject: [PATCH] compile Visitor.py, reduces lxml compile time by another ~20% --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a80d60f7..bbd65953 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,10 @@ except ValueError: try: from Cython.Compiler.Main import compile source_root = os.path.dirname(__file__) - compiled_modules = ["Cython.Plex.Scanners", "Cython.Compiler.Scanning", "Cython.Compiler.Parsing"] + compiled_modules = ["Cython.Plex.Scanners", + "Cython.Compiler.Scanning", + "Cython.Compiler.Parsing", + "Cython.Compiler.Visitor"] extensions = [] for module in compiled_modules: source_file = os.path.join(source_root, *module.split('.')) -- 2.26.2