dirstate: get rid of default args for status

This commit is contained in:
Matt Mackall 2007-07-21 16:02:09 -05:00
parent 43547721ea
commit 81e9f172fb

View File

@ -448,8 +448,7 @@ class dirstate(object):
if not seen(k) and imatch(k):
yield 'm', k, None
def status(self, files=None, match=util.always, list_ignored=False,
list_clean=False):
def status(self, files, match, list_ignored, list_clean):
lookup, modified, added, unknown, ignored = [], [], [], [], []
removed, deleted, clean = [], [], []