projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f9b8f89
)
compile Visitor.py, reduces lxml compile time by another ~20%
author
Stefan Behnel
<scoder@users.berlios.de>
Wed, 12 Nov 2008 07:04:16 +0000
(08:04 +0100)
committer
Stefan Behnel
<scoder@users.berlios.de>
Wed, 12 Nov 2008 07:04:16 +0000
(08:04 +0100)
setup.py
patch
|
blob
|
history
diff --git
a/setup.py
b/setup.py
index a80d60f77c7360abf39ab9fa28f7a1e303051b28..bbd6595370ce7d3d43f1d6634c7d1e5f38662a76 100644
(file)
--- 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('.'))