diff options
| author | Oleksandr Pavlyk <oleksandr.pavlyk@intel.com> | 2016-10-06 17:02:51 -0500 |
|---|---|---|
| committer | Oleksandr Pavlyk <oleksandr.pavlyk@intel.com> | 2016-10-06 17:02:51 -0500 |
| commit | ba11cf468bef6d10dccf3b25ecb31b8e965fb803 (patch) | |
| tree | 1bc0ee0eb18a8c6bad8330508337163077a82493 /numpy/distutils | |
| parent | 8888a76c2c8211588b71e19a45a938d73fd0b5f4 (diff) | |
| download | numpy-ba11cf468bef6d10dccf3b25ecb31b8e965fb803.tar.gz | |
BUG: Fixed build break
Added missing import of platform_bits
Diffstat (limited to 'numpy/distutils')
| -rw-r--r-- | numpy/distutils/msvc9compiler.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/distutils/msvc9compiler.py b/numpy/distutils/msvc9compiler.py index 58af9042f..8d0c92ed3 100644 --- a/numpy/distutils/msvc9compiler.py +++ b/numpy/distutils/msvc9compiler.py @@ -3,6 +3,8 @@ from __future__ import division, absolute_import, print_function import os from distutils.msvc9compiler import MSVCCompiler as _MSVCCompiler +from .system_info import platform_bits + def _merge(old, new): """Concatenate two environment paths avoiding repeats. |
