equal
deleted
inserted
replaced
627 |
627 |
628 |
628 |
629 def loadpredicate(ui, extname, registrarobj): |
629 def loadpredicate(ui, extname, registrarobj): |
630 """Load fileset predicates from specified registrarobj |
630 """Load fileset predicates from specified registrarobj |
631 """ |
631 """ |
632 for name, func in registrarobj._table.iteritems(): |
632 for name, func in pycompat.iteritems(registrarobj._table): |
633 symbols[name] = func |
633 symbols[name] = func |
634 |
634 |
635 |
635 |
636 # tell hggettext to extract docstrings from these functions: |
636 # tell hggettext to extract docstrings from these functions: |
637 i18nfunctions = symbols.values() |
637 i18nfunctions = symbols.values() |