Home | History | Annotate | Download | only in Lib

Lines Matching full:"$ match"

1097         _hostprog = re.compile('^//([^/?]*)(.*)$')
1098
1099 match
= _hostprog.match(url)
1114 _userprog = re.compile('^(.*)@(.*)$')
1115
1116 match
= _userprog.match(host)
1139 _portprog = re.compile('^(.*):([0-9]*)$')
1140
1141 match
= _portprog.match(host)
1157 _nportprog = re.compile('^(.*):(.*)$')
1158
1159 match
= _nportprog.match(host)
1176 _queryprog = re.compile('^(.*)\?([^?]*)$')
1177
1178 match
= _queryprog.match(url)
1188 _tagprog = re.compile('^(.*)#([^#]*)$')
1189
1190 match
= _tagprog.match(url)
1206 _valueprog = re.compile('^([^=]*)=(.*)$')
1207
1208 match
= _valueprog.match(attr)