summaryrefslogtreecommitdiffstats
path: root/intl/icu/source/python/icutools/databuilder/renderers/__init__.py
blob: 7c402c2b78be5c7bb598f02abefb5b4e8f5192cc (plain)
1
2
3
4
5
6
7
8
9
10
# Copyright (C) 2018 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html

from collections import namedtuple

MakeRule = namedtuple("MakeRule", ["name", "dep_literals", "dep_files", "output_file", "cmds"])

MakeFilesVar = namedtuple("MakeFilesVar", ["name", "files"])

MakeStringVar = namedtuple("MakeStringVar", ["name", "content"])