OCaml codecs for Python INI file handling compatible with ConfigParser
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 12 lines 177 B view raw
1# Case sensitivity tests 2# Section names are case-sensitive 3# Option names are case-insensitive 4 5[Section] 6OPTION = value1 7 8[SECTION] 9option = value2 10 11[section] 12Option = value3