mercurial/fileset.py
changeset 48913 f254fc73d956
parent 48875 6000f5b25c9b
child 48946 642e31cb55f0
equal deleted inserted replaced
48912:a0674e916fb6 48913:f254fc73d956
   611     return getmatch(mctx, tree)
   611     return getmatch(mctx, tree)
   612 
   612 
   613 
   613 
   614 def loadpredicate(ui, extname, registrarobj):
   614 def loadpredicate(ui, extname, registrarobj):
   615     """Load fileset predicates from specified registrarobj"""
   615     """Load fileset predicates from specified registrarobj"""
   616     for name, func in pycompat.iteritems(registrarobj._table):
   616     for name, func in registrarobj._table.items():
   617         symbols[name] = func
   617         symbols[name] = func
   618 
   618 
   619 
   619 
   620 # tell hggettext to extract docstrings from these functions:
   620 # tell hggettext to extract docstrings from these functions:
   621 i18nfunctions = symbols.values()
   621 i18nfunctions = symbols.values()