tests/filtercr.py
author Bryan O'Sullivan <bryano@fb.com>
Fri, 01 Jun 2012 17:05:31 -0700
changeset 16834 cafd8a8fb713
parent 13141 6cfe17c19ba2
permissions -rwxr-xr-x
util: subclass deque for Python 2.4 backwards compatibility It turns out that Python 2.4's deque type is lacking a remove method. We can't implement remove in terms of find, because it doesn't have find either.

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