diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2016-08-03 22:09:03 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-03 22:09:03 -0400 |
| commit | aad4a6913d3e505064c76322d20756909724c411 (patch) | |
| tree | b204a1e60f08c41475e9a7edc90bf006a24bcd26 | |
| parent | 5f3dac49084b38a248682475635f866e795f484c (diff) | |
| parent | de46545db087dc81ea24d2a8695f8fe6ff6a0c78 (diff) | |
| download | external_python_setuptools-aad4a6913d3e505064c76322d20756909724c411.tar.gz external_python_setuptools-aad4a6913d3e505064c76322d20756909724c411.tar.bz2 external_python_setuptools-aad4a6913d3e505064c76322d20756909724c411.zip | |
Merge pull request #713 from sileht/sileht/cythong-fix
Fix _have_cython
| -rw-r--r-- | setuptools/extension.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/extension.py b/setuptools/extension.py index 5ea72c06..6b9c19f8 100644 --- a/setuptools/extension.py +++ b/setuptools/extension.py @@ -19,7 +19,7 @@ def _have_cython(): """ Return True if Cython can be imported. """ - cython_impl = 'Cython.Distutils.build_ext', + cython_impl = 'Cython.Distutils.build_ext' try: # from (cython_impl) import build_ext __import__(cython_impl, fromlist=['build_ext']).build_ext |
