Home | History | Annotate | Download | only in python2.7

Lines Matching full:"$ match"

1083         _hostprog = re.compile('^//([^/?]*)(.*)$')
1084
1085 match
= _hostprog.match(url)
1100 _userprog = re.compile('^(.*)@(.*)$')
1101
1102 match
= _userprog.match(host)
1125 _portprog = re.compile('^(.*):([0-9]+)$')
1126
1127 match
= _portprog.match(host)
1140 _nportprog = re.compile('^(.*):(.*)$')
1141
1142 match
= _nportprog.match(host)
1159 _queryprog = re.compile('^(.*)\?([^?]*)$')
1160
1161 match
= _queryprog.match(url)
1171 _tagprog = re.compile('^(.*)#([^#]*)$')
1172
1173 match
= _tagprog.match(url)
1189 _valueprog = re.compile('^([^=]*)=(.*)$')
1190
1191 match
= _valueprog.match(attr)