Home | History | Annotate | Download | only in testserver

Lines Matching full:findall

787       status_code = re.findall('HTTP/\d+.\d+ (\d+)', response)[0]
791 header_values = re.findall('(\S+):\s*(.*)', line)
872 b64str = re.findall(r'Basic (\S+)', auth)[0]
874 username, password = re.findall(r'([^:]+):(\S+)', userpass)[0]
976 pairs = dict(re.findall(r'(\b[^ ,=]+)="?([^",]+)"?', auth))