Lines Matching refs:match
443 if not re.match(r"\Av[a-fA-F0-9]+\..+\Z", hostname):
945 parameters in the output will match the order of parameters in the
1064 match = _typeprog.match(url)
1065 if match:
1066 scheme, data = match.groups()
1085 match = _hostprog.match(url)
1086 if match:
1087 host_port, path = match.groups()
1135 match = _portprog.fullmatch(host)
1136 if match:
1137 host, port = match.groups()