tests/filtercr.py
author FUJIWARA Katsunori <foozy@lares.dti.ne.jp>
Tue, 18 Sep 2012 21:39:12 +0900
changeset 17625 b83c18204c36
parent 13141 6cfe17c19ba2
permissions -rwxr-xr-x
bookmarks: avoid redundant creation/assignment of "validdests" in "validdest()"

#!/usr/bin/env python

# Filter output by the progress extension to make it readable in tests

import sys, re

for line in sys.stdin:
    line = re.sub(r'\r+[^\n]', lambda m: '\n' + m.group()[-1:], line)
    sys.stdout.write(line)
print