Lines Matching refs:match
300 m = _ver_output.match(info)
382 # valid if the versions match.
1036 match = _ironpython_sys_version_parser.match(sys_version)
1038 match = _ironpython26_sys_version_parser.match(sys_version)
1040 if match is None:
1045 version, alt_version, compiler = match.groups()
1052 match = _sys_version_parser.match(sys_version)
1053 if match is None:
1057 version, buildno, builddate, buildtime, _ = match.groups()
1065 match = _pypy_sys_version_parser.match(sys_version)
1066 if match is None:
1069 version, buildno, builddate, buildtime = match.groups()
1074 match = _sys_version_parser.match(sys_version)
1075 if match is None:
1080 match.groups()
1286 mo = _os_release_line.match(line)