From: Stefan Behnel Date: Wed, 12 Nov 2008 07:04:16 +0000 (+0100) Subject: compile Visitor.py, reduces lxml compile time by another ~20% X-Git-Tag: 0.11-beta~261 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=23c28eff6070efbbe2f9f05d4db35de7fe9b9615;p=cython.git compile Visitor.py, reduces lxml compile time by another ~20% --- 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('.'))