Mercurial > public > mercurial-scm > hg
comparison mercurial/patch.py @ 16686:67964cda8701
cleanup: "not x in y" -> "x not in y"
author | Brodie Rao <brodie@sf.io> |
---|---|
date | Sat, 12 May 2012 16:00:57 +0200 |
parents | 525fdb738975 |
children | e34106fa0dc3 |
comparison
equal
deleted
inserted
replaced
16685:43d55088415a | 16686:67964cda8701 |
---|---|
1657 yield ('\n', '') | 1657 yield ('\n', '') |
1658 if head: | 1658 if head: |
1659 if line.startswith('@'): | 1659 if line.startswith('@'): |
1660 head = False | 1660 head = False |
1661 else: | 1661 else: |
1662 if line and not line[0] in ' +-@\\': | 1662 if line and line[0] not in ' +-@\\': |
1663 head = True | 1663 head = True |
1664 stripline = line | 1664 stripline = line |
1665 if not head and line and line[0] in '+-': | 1665 if not head and line and line[0] in '+-': |
1666 # highlight trailing whitespace, but only in changed lines | 1666 # highlight trailing whitespace, but only in changed lines |
1667 stripline = line.rstrip() | 1667 stripline = line.rstrip() |