projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9c9c12c
)
avoid redundant exception output in Python 3 build
author
Stefan Behnel
<scoder@users.berlios.de>
Thu, 28 Apr 2011 18:37:31 +0000
(20:37 +0200)
committer
Stefan Behnel
<scoder@users.berlios.de>
Thu, 28 Apr 2011 18:37:31 +0000
(20:37 +0200)
setup.py
patch
|
blob
|
history
diff --git
a/setup.py
b/setup.py
index cb4f996dd241e9fb0d60e1f2702a9e105a82ec4e..782dea25edf0bd376c7809fceb1e68fe6b30dec1 100644
(file)
--- a/
setup.py
+++ b/
setup.py
@@
-249,7
+249,11
@@
except ValueError:
try:
sys.argv.remove("--no-cython-compile")
+ compile_cython_itself = False
except ValueError:
+ compile_cython_itself = True
+
+if compile_cython_itself:
compile_cython_modules(cython_profile, cython_compile_more, cython_with_refnanny)
setup_args.update(setuptools_extra_args)