Mercurial > hg
comparison mercurial/dirstate.py @ 6593:58b6ee2e6c92
dirstate: remove default from status list_unknown
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Mon, 12 May 2008 11:37:08 -0500 |
parents | eda3fd322a7f |
children | 41eb20cc1c02 |
comparison
equal
deleted
inserted
replaced
6592:f3d7c2e81be1 | 6593:58b6ee2e6c92 |
---|---|
567 continue | 567 continue |
568 known[k] = 1 | 568 known[k] = 1 |
569 if imatch(k): | 569 if imatch(k): |
570 yield 'm', k, None | 570 yield 'm', k, None |
571 | 571 |
572 def status(self, files, match, list_ignored, list_clean, list_unknown=True): | 572 def status(self, files, match, list_ignored, list_clean, list_unknown): |
573 lookup, modified, added, unknown, ignored = [], [], [], [], [] | 573 lookup, modified, added, unknown, ignored = [], [], [], [], [] |
574 removed, deleted, clean = [], [], [] | 574 removed, deleted, clean = [], [], [] |
575 | 575 |
576 files = files or [] | 576 files = files or [] |
577 _join = self._join | 577 _join = self._join |