Mercurial > hg
changeset 34435:5326e4ef1dab
style: never put multiple statements on one line
Differential Revision: https://phab.mercurial-scm.org/D905
author | Alex Gaynor <agaynor@mozilla.com> |
---|---|
date | Fri, 29 Sep 2017 15:49:20 +0000 |
parents | 884b595f5195 |
children | c1fe66e89f57 |
files | mercurial/keepalive.py mercurial/pure/bdiff.py mercurial/pure/mpatch.py mercurial/sshserver.py mercurial/util.py |
diffstat | 5 files changed, 14 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/keepalive.py Mon Oct 02 18:18:57 2017 +0100 +++ b/mercurial/keepalive.py Fri Sep 29 15:49:20 2017 +0000 @@ -135,7 +135,8 @@ del self._connmap[connection] del self._readymap[connection] self._hostmap[host].remove(connection) - if not self._hostmap[host]: del self._hostmap[host] + if not self._hostmap[host]: + del self._hostmap[host] finally: self._lock.release() @@ -621,7 +622,8 @@ f = fo.readline() if f: foo = foo + f - else: break + else: + break fo.close() m = md5(foo) print(format % ('keepalive readline', m.hexdigest()))
--- a/mercurial/pure/bdiff.py Mon Oct 02 18:18:57 2017 +0100 +++ b/mercurial/pure/bdiff.py Fri Sep 29 15:49:20 2017 +0000 @@ -60,7 +60,8 @@ bin = [] p = [0] - for i in a: p.append(p[-1] + len(i)) + for i in a: + p.append(p[-1] + len(i)) d = difflib.SequenceMatcher(None, a, b).get_matching_blocks() d = _normalizeblocks(a, b, d)
--- a/mercurial/pure/mpatch.py Mon Oct 02 18:18:57 2017 +0100 +++ b/mercurial/pure/mpatch.py Fri Sep 29 15:49:20 2017 +0000 @@ -75,7 +75,8 @@ # copy all the patches into our segment so we can memmove from them pos = b2 + bl m.seek(pos) - for p in bins: m.write(p) + for p in bins: + m.write(p) for plen in plens: # if our list gets too long, execute it