Mercurial > hg
comparison tests/test-eol-patch.t @ 17572:b644287e79a8
store: unindent most of the contents of the for loop in _auxencode()
by refactoring
for i, n in enumerate(res):
if n:
<main code block>
to
for i, n in enumerate(res):
if not n:
continue
<main code block>
(no functional change)
author | Adrian Buehlmann <adrian@cadifra.com> |
---|---|
date | Sat, 15 Sep 2012 21:42:52 +0200 |
parents | 43b3b761d9d1 |
children |
comparison
equal
deleted
inserted
replaced
17571:7ed972a9e7a9 | 17572:b644287e79a8 |
---|