# HG changeset patch # User Matt Harbison # Date 2018-02-03 05:01:57 # Node ID ed3a7300b7b5a427bdcffefd0c80aab65824bf4b # Parent 265e91da56fd4e6a9b765caec2c2cfee434de20e localrepo: drop the deprecated walk() method (API) .. api:: The deprecated localrepo.walk() has been removed, and replaced by repo[node].walk(). diff --git a/mercurial/localrepo.py b/mercurial/localrepo.py --- a/mercurial/localrepo.py +++ b/mercurial/localrepo.py @@ -2048,15 +2048,6 @@ class localrepository(object): # tag cache retrieval" case to work. self.invalidate() - def walk(self, match, node=None): - ''' - walk recursively through the directory tree or a given - changeset, finding all files matched by the match - function - ''' - self.ui.deprecwarn('use repo[node].walk instead of repo.walk', '4.3') - return self[node].walk(match) - def status(self, node1='.', node2=None, match=None, ignored=False, clean=False, unknown=False, listsubrepos=False):