numpy.distutils.ccompiler.simple_version_match#

distutils.ccompiler.simple_version_match(pat='[-.\\d]+', ignore='', start='')[源代码]#

对版本号进行简单的匹配,用于 CCompiler 和 FCompiler。

参数::
patstr,可选

匹配版本号的正则表达式。默认值为 r'[-.\d]+'

ignorestr,可选

匹配要跳过的模式的正则表达式。默认值为 '',在这种情况下不会跳过任何内容。

startstr,可选

匹配要开始查找版本号的起始位置的正则表达式。默认值为 '',在这种情况下,从传递给 matcher 的版本字符串的开头开始搜索。

返回值::
matchercallable

一个适合用作 .version_match 属性的函数 distutils.ccompiler.CCompiler 类。 matcher 接受一个参数,一个版本字符串。