Mercurial > hg-stable
view tests/filtercr.py @ 13938:e44ebd2a142a
revset: optimize stringset when subset == entire repo
if range(len(repo)) is passed to stringset and x is a valid rev
(checked before) then x is guaranteed to be in subset, we can check
for that by comparing the lengths of the sets
author | Idan Kamara <idankk86@gmail.com> |
---|---|
date | Fri, 15 Apr 2011 20:07:44 +0300 |
parents | 6cfe17c19ba2 |
children |
line wrap: on
line source
#!/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