changeset 6572:4927cf61bdc1

walk: eliminate some default variables
author Matt Mackall <mpm@selenic.com>
date Mon, 12 May 2008 11:37:07 -0500
parents e6f71ca3de8a
children 44cd348e6529
files mercurial/dirstate.py mercurial/localrepo.py
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/dirstate.py	Thu May 08 18:36:45 2008 +0200
+++ b/mercurial/dirstate.py	Mon May 12 11:37:07 2008 -0500
@@ -416,12 +416,12 @@
                 return True
         return False
 
-    def walk(self, files=None, match=util.always, badmatch=None):
+    def walk(self, files, match, badmatch):
         # filter out the stat
         for src, f, st in self.statwalk(files, match, badmatch=badmatch):
             yield src, f
 
-    def statwalk(self, files=None, match=util.always, unknown=True,
+    def statwalk(self, files, match, unknown=True,
                  ignored=False, badmatch=None, directories=False):
         '''
         walk recursively through the directory tree, finding all files
--- a/mercurial/localrepo.py	Thu May 08 18:36:45 2008 +0200
+++ b/mercurial/localrepo.py	Mon May 12 11:37:07 2008 -0500
@@ -931,7 +931,7 @@
                 self.dirstate.invalidate()
             del tr, lock, wlock
 
-    def walk(self, node=None, files=[], match=util.always, badmatch=None):
+    def walk(self, node, files, match, badmatch):
         '''
         walk recursively through the directory tree or a given
         changeset, finding all files matched by the match
@@ -970,7 +970,7 @@
                     self.ui.warn(_('%s: No such file in rev %s\n')
                                  % (self.pathto(fn), short(node)))
         else:
-            for src, fn in self.dirstate.walk(files, match, badmatch=badmatch):
+            for src, fn in self.dirstate.walk(files, match, badmatch):
                 yield src, fn
 
     def status(self, node1=None, node2=None, files=[], match=util.always,