Python distutils.ccompiler 模块,get_default_compiler() 实例源码

我们从Python开源项目中,提取了以下2个代码示例,用于说明如何使用distutils.ccompiler.get_default_compiler()

项目:slack-sql    作者:wang502    | 项目源码 | 文件源码
def get_compiler(self):
        """Return the C compiler used for building the extension."""
        return self.compiler or get_default_compiler()
项目:pygresql    作者:Cito    | 项目源码 | 文件源码
def get_compiler(self):
        """Return the C compiler used for building the extension."""
        return self.compiler or get_default_compiler()