/
githubmirror
/
icu
Обзор
Документация
Войти
/
githubmirror
/
icu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
icu4c/source/python/icutools/databuilder/renderers/__init__.py
10 строк
383 B
Shane Carr
ICU-20593 Renaming Python buildtool to icutools.databuilder.
07 май 2019, 23:42
07 май 2019, 23:42
702fdb6
Код
Авторство
О чём код?
# 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"])