# HG changeset patch # User Siddharth Agarwal # Date 1367620578 25200 # Node ID facd906caeebdd22519f5bf4836b1c1ad41a4e55 # Parent 3cb9468535bde99eea2c421c938b3a1078881a0a match: add comments to explain explicitdir and traversedir diff -r 3cb9468535bd -r facd906caeeb mercurial/match.py --- a/mercurial/match.py Fri May 03 14:41:58 2013 -0700 +++ b/mercurial/match.py Fri May 03 15:36:18 2013 -0700 @@ -119,7 +119,11 @@ found/accessed, with an error message ''' pass + # If this is set, it will be called when an explicitly listed directory is + # visited. explicitdir = None + # If this is set, it will be called when a directory discovered by recursive + # traversal is visited. traversedir = None def missing(self, f): pass