tests/filtercr.py
author Dirkjan Ochtman <dirkjan@ochtman.nl>
Sat, 12 Mar 2011 13:02:03 +0100
branchstable
changeset 13594 64a458707fd4
parent 13141 6cfe17c19ba2
permissions -rwxr-xr-x
setup.py: use StrictVersion instead of manual comparison

#!/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