mercurial/templater.py
changeset 37399 0b64416224d9
parent 37398 3235afdfcf1c
child 37499 75c13343cf38
equal deleted inserted replaced
37398:3235afdfcf1c 37399:0b64416224d9
    42     represents a list/dict of printable values, which can also be converted
    42     represents a list/dict of printable values, which can also be converted
    43     to mappings by % operator.
    43     to mappings by % operator.
    44 
    44 
    45 mappable
    45 mappable
    46     represents a scalar printable value, also supports % operator.
    46     represents a scalar printable value, also supports % operator.
       
    47 
       
    48 mappinggenerator, mappinglist
       
    49     represents mappings (i.e. a list of dicts), which may have default
       
    50     output format.
    47 """
    51 """
    48 
    52 
    49 from __future__ import absolute_import, print_function
    53 from __future__ import absolute_import, print_function
    50 
    54 
    51 import abc
    55 import abc