# HG changeset patch # User Matt Mackall # Date 1185051729 18000 # Node ID 8c294ee7047ed2e1987d70039f016f7f05939325 # Parent 6a7659a0c07c6fa0c218a9a2cf57f54277414253 dirstate: get rid of default args for status diff --git a/mercurial/dirstate.py b/mercurial/dirstate.py --- a/mercurial/dirstate.py +++ b/mercurial/dirstate.py @@ -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 = [], [], []