OCaml codecs for Python INI file handling compatible with ConfigParser
1# Basic interpolation test cases
2[Foo]
3bar=something %(with1)s interpolation (1 step)
4bar9=something %(with9)s lots of interpolation (9 steps)
5bar10=something %(with10)s lots of interpolation (10 steps)
6bar11=something %(with11)s lots of interpolation (11 steps)
7with11=%(with10)s
8with10=%(with9)s
9with9=%(with8)s
10with8=%(With7)s
11with7=%(WITH6)s
12with6=%(with5)s
13With5=%(with4)s
14WITH4=%(with3)s
15with3=%(with2)s
16with2=%(with1)s
17with1=with
18
19[Mutual Recursion]
20foo=%(bar)s
21bar=%(foo)s
22
23[Interpolation Error]
24# no definition for 'reference'
25name=%(reference)s