Commit 66c5a0af authored by Stefan Behnel's avatar Stefan Behnel

give a hint on what went wrong on a failed Cython import from distutils

parent 600ee47d
......@@ -22,6 +22,7 @@ try:
compile as cython_compile
from Cython.Compiler.Errors import PyrexError
except ImportError, e:
print "failed to import Cython: %s" % e
PyrexError = None
from distutils.command import build_ext as _build_ext
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment