blob: 551473f91ce76b128aad7d7bbaa3fac9b528143d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# vi: ft=dosini
# Test file comment
[section]
# Test section comment
# Test field comment
test_boolean_default = boolean(default=True)
test_boolean = bool(default=False)
# Test field commented out
# Uncomment to enable
# test_boolean = True
test_string_file = string(default='~/myfile')
test_option = option('foo', 'bar', 'foobar', default='foobar')
[section2]
|