comparison configmix/constants.py @ 305:f529ca46dd50

Implemented the "ref" namespace to get configuration tree references. BUGS: - Tests should be done more thoroughly and extensively - Interaction of tree references and variable substitution should be tested more properly - Documentation is missing yet
author Franz Glasner <fzglas.hg@dom66.de>
date Mon, 26 Apr 2021 09:42:42 +0200
parents 2a2f5b86fe34
children dd454e1efea4
comparison
equal deleted inserted replaced
304:d8361dd70d2d 305:f529ca46dd50
28 DEL_VALUE = u("{{::DEL::}}") 28 DEL_VALUE = u("{{::DEL::}}")
29 """Value for configuration items to signal that the corresponding 29 """Value for configuration items to signal that the corresponding
30 key-value is to be deleted when configurations are merged 30 key-value is to be deleted when configurations are merged
31 31
32 """ 32 """
33
34 REF_NAMESPACE = u("ref")
35 """Special internal namespace used for implementation of tree
36 `references`
37
38 """