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