ArDrone SDK 1.8 added
[mardrone] / mardrone / ARDrone_SDK_Version_1_8_20110726 / ARDroneLib / Soft / Lib / iniparser3.0b / test / twisted.ini
1 #
2 # Twisted.ini
3 # This file is meant for regression tests
4
5 # Different blank settings around the equal sign
6 [blanks]
7 a=1
8 b=1;
9 c=1; comment
10 d=1# comment
11
12 e =1
13 f =1;
14 g =1; comment
15 h =1# comment
16
17 i= 1
18 j= 1;
19 k= 1; comment
20 l= 1# comment
21
22 m = 1
23 n = 1;
24 o = 1; comment
25 p = 1# comment
26
27 q=1 ;
28 r=1 ; comment
29 s=1 ;comment
30 t=1 #comment
31
32 # Empty values
33 [empty]
34 a = ''
35 b = ""
36
37 c = '' ;
38 d = "" ;
39
40 e = '' ; comment
41 f = "" ; comment
42
43 g =
44 h = ;
45 i = ; comment
46 j = # comment
47
48 k=
49 l=;
50 m=;comment
51 n=#
52
53 # Peculiar values
54 [peculiar]
55 a=';';
56 b='#'#
57 c=';';comment
58 d='#'#comment
59 e=\;
60 f=\#
61 g=\;comment
62 h=\#comment
63 i=;;
64 j=##
65 k=;;;;;;;;;;
66 l=##########
67
68 # Quotes
69 [quotes]
70 s1='
71 s2=''
72 s3='''
73 s4=''''
74
75 d1="
76 d2=""
77 d3="""
78 d4=""""
79
80 m1='"'
81 m2="'"
82
83 h1=hello'world
84 h2='hello'world
85 h3='hello'world'
86
87 h4=hello"world
88 h5="hello"world
89 h6="hello"world"
90
91 # Section names
92 [a]
93 [ b]
94 [c ]
95 [ d ]
96 [ begin    end ]
97 [ open[ ]
98
99 # Multi-line inputs
100 [multi]
101 a = begin\
102 end
103 b = begin \
104 end
105 c = begin \
106  end
107 d = 1\
108 2\
109 3\
110 4
111 e = 1 \ 
112     2 \ 
113     3 \  
114     4
115 f = 1 ; \
116 hidden = because of the preceding backslash multi-lining the comment ;
117 visible = 1
118 g = 1 #\
119 and now this comment is hidden too \
120 and this one too
121 h = 1
122 multi \
123 line \
124 key = 1
125 multi \
126 line \
127 key = \
128 multi \
129 line \
130 value ;
131 # end of file