[PATCH] match: add __repr__ for subdirmatcher

Martin von Zweigbergk martinvonz at google.com
Tue May 30 06:47:41 UTC 2017


# HG changeset patch
# User Martin von Zweigbergk <martinvonz at google.com>
# Date 1495829310 25200
#      Fri May 26 13:08:30 2017 -0700
# Node ID bd7f40b29d2eb2dcf7fc774096fe96310446f788
# Parent  cf7c88986e9f64926bdf79b04e2777d730cf8cb0
match: add __repr__ for subdirmatcher

Should at least be useful for debugging. Would matter for correctness
too if fsmonitor or Facebook's sparse extension worked with subrepos
(which I don't know if they do).

diff --git a/mercurial/match.py b/mercurial/match.py
--- a/mercurial/match.py
+++ b/mercurial/match.py
@@ -629,6 +629,10 @@
     def anypats(self):
         return self._matcher.anypats()
 
+    def __repr__(self):
+        return ('<subdirmatcher path=%r, matcher=%r>' %
+                (self._path, self._matcher))
+
 def patkind(pattern, default=None):
     '''If pattern is 'kind:pat' with a known kind, return kind.'''
     return _patsplit(pattern, default)[0]


More information about the Mercurial-devel mailing list