comparison mercurial/match.py @ 15029:d5f774668102

match: remove unused assignment The field is assigned again below with the constructor argument.
author Martin Geisler <mg@aragost.com>
date Tue, 09 Aug 2011 11:05:13 +0200
parents b6dc362b051c
children bd12ef347680
comparison
equal deleted inserted replaced
15028:eb97a3e38656 15029:d5f774668102
47 'relre:<regexp>' - a regexp that needn't match the start of a name 47 'relre:<regexp>' - a regexp that needn't match the start of a name
48 'set:<fileset>' - a fileset expression 48 'set:<fileset>' - a fileset expression
49 '<something>' - a pattern of the specified default type 49 '<something>' - a pattern of the specified default type
50 """ 50 """
51 51
52 self._ctx = None
53 self._root = root 52 self._root = root
54 self._cwd = cwd 53 self._cwd = cwd
55 self._files = [] 54 self._files = []
56 self._anypats = bool(include or exclude) 55 self._anypats = bool(include or exclude)
57 self._ctx = ctx 56 self._ctx = ctx