diff options
author | Robert Kern <robert.kern@gmail.com> | 2007-07-02 19:32:02 +0000 |
---|---|---|
committer | Robert Kern <robert.kern@gmail.com> | 2007-07-02 19:32:02 +0000 |
commit | 7ea8b73492aa8e9f7be88ce8e53fa309e3da1f84 (patch) | |
tree | 2a9e9815acce8bec40c39675b9635aff10c341f9 /numpy/distutils/command/build_src.py | |
parent | 59e6af2925dc485b6cefba37d10207ea8f670535 (diff) | |
download | numpy-7ea8b73492aa8e9f7be88ce8e53fa309e3da1f84.tar.gz |
Import Pyrex.Compiler.Main explicitly since in 0.9.5.1, it does not appear to be imported with a plain 'import Pyrex.Compiler'
Diffstat (limited to 'numpy/distutils/command/build_src.py')
-rw-r--r-- | numpy/distutils/command/build_src.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/command/build_src.py b/numpy/distutils/command/build_src.py index 131bb8d41..d634d4420 100644 --- a/numpy/distutils/command/build_src.py +++ b/numpy/distutils/command/build_src.py @@ -11,7 +11,7 @@ from distutils.util import get_platform from distutils.errors import DistutilsError, DistutilsSetupError try: - import Pyrex.Compiler + import Pyrex.Compiler.Main have_pyrex = True except ImportError: have_pyrex = False |