You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import importlib
|
|
|
|
from .compilers.C import unix
|
|
|
|
UnixCCompiler = unix.Compiler
|
|
|
|
# ensure import of unixccompiler implies ccompiler imported
|
|
# (pypa/setuptools#4871)
|
|
importlib.import_module('distutils.ccompiler')
|