File: anchoralias.yaml

package info (click to toggle)
python-hiyapyco 0.7.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 436 kB
  • sloc: python: 2,012; makefile: 237
file content (21 lines) | stat: -rw-r--r-- 305 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---

anchorsimple: &as "anchor - string"
anchorlist: &al
  - alist1key: alist1val
  - alist2key: alist2val
  - alist3key: alist3val
anchordict: &ad
  adkey1: "ad value 1"
  adkey2: "ad value 2"

testvar:
  simple: *as
  list: *al
  listwithmerge:
    <<: *al
  dict: *ad
  dictwithmerge:
    <<: *ad

...