diff options
author | Matti Picus <matti.picus@gmail.com> | 2020-01-23 14:35:59 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-23 14:35:59 +1100 |
commit | 61c5c5d2c4ad91a1c5507162c822bfb1426ea405 (patch) | |
tree | cc9b81ae189053ecf2a431a6f2db58715a49dd94 /numpy/distutils/unixccompiler.py | |
parent | b02f478988407a5f0d6b608a29141e2fd9814b35 (diff) | |
parent | f9c5bd5ed1c241b189cea6cf5aef750526194708 (diff) | |
download | numpy-61c5c5d2c4ad91a1c5507162c822bfb1426ea405.tar.gz |
Merge pull request #15366 from mwtoews/F403
MAINT: resolve pyflake F403 'from module import *' used
Diffstat (limited to 'numpy/distutils/unixccompiler.py')
-rw-r--r-- | numpy/distutils/unixccompiler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/distutils/unixccompiler.py b/numpy/distutils/unixccompiler.py index cf62cb019..5f36c439f 100644 --- a/numpy/distutils/unixccompiler.py +++ b/numpy/distutils/unixccompiler.py @@ -4,8 +4,8 @@ unixccompiler - can handle very long argument lists for ar. """ import os -from distutils.errors import DistutilsExecError, CompileError -from distutils.unixccompiler import * +from distutils.errors import CompileError, DistutilsExecError, LibError +from distutils.unixccompiler import UnixCCompiler from numpy.distutils.ccompiler import replace_method from numpy.distutils.misc_util import _commandline_dep_string from numpy.distutils import log |