Blob Blame History Raw
import re

def flatten_result(result):
    return re.sub(r'[\s\r\n]+', ' ', result).strip()

def result_lines(result):
    return [x.strip() for x in re.split(r'\r?\n', re.sub(r' +', ' ', result)) if x.strip() != '']