From 66c5a0afc5b4d52f9d1248cea8607125649ea7c2 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Wed, 17 Dec 2008 22:24:04 +0100 Subject: [PATCH] give a hint on what went wrong on a failed Cython import from distutils --- Cython/Distutils/build_ext.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Cython/Distutils/build_ext.py b/Cython/Distutils/build_ext.py index 8064956f..742ecd50 100644 --- a/Cython/Distutils/build_ext.py +++ b/Cython/Distutils/build_ext.py @@ -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 -- 2.26.2