]> git.madduck.net Git - etc/vim.git/blob - tests/expression.py

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Initial commit
[etc/vim.git] / tests / expression.py
1 ...
2 'some_string'
3 b'\\xa3'
4 Name
5 None
6 True
7 False
8 1
9 1.0
10 1j
11 True or False
12 True or False or None
13 True and False
14 True and False and None
15 (Name1 and Name2) or Name3
16 Name1 and Name2 or Name3
17 Name1 or (Name2 and Name3)
18 Name1 or Name2 and Name3
19 (Name1 and Name2) or (Name3 and Name4)
20 Name1 and Name2 or Name3 and Name4
21 Name1 or (Name2 and Name3) or Name4
22 Name1 or Name2 and Name3 or Name4
23 v1 << 2
24 1 >> v2
25 1 % finished
26 1 + v2 - v3 * 4 ^ 5 ** v6 / 7 // 8
27 ((1 + v2) - (v3 * 4)) ^ (((5 ** v6) / 7) // 8)
28 not great
29 ~great
30 +value
31 -1
32 ~int and not v1 ^ 123 + v2 | True
33 (~int) and (not ((v1 ^ (123 + v2)) | True))
34 lambda arg: None
35 lambda a=True: a
36 lambda a, b, c=True: a
37 lambda a, b, c=True, *, d=(1 << v2), e='str': a
38 lambda a, b, c=True, *vararg, d=(v1 << 2), e='str', **kwargs: a + b
39 1 if True else 2
40 str or None if True else str or bytes or None
41 (str or None) if True else (str or bytes or None)
42 str or None if (1 if True else 2) else str or bytes or None
43 (str or None) if (1 if True else 2) else (str or bytes or None)
44 {'2.7': dead, '3.7': (long_live or die_hard)}
45 {'2.7': dead, '3.7': (long_live or die_hard), **{'3.6': verygood}}
46 {**a, **b, **c}
47 {'2.7', '3.6', '3.7', '3.8', '3.9', ('4.0' if gilectomy else '3.10')}
48 ({'a': 'b'}, (True or False), (+value), 'string', b'bytes') or None
49 ()
50 (1,)
51 (1, 2)
52 (1, 2, 3)
53 []
54 [1, 2, 3, 4, 5, 6, 7, 8, 9, (10 or A), (11 or B), (12 or C)]
55 {i for i in (1, 2, 3)}
56 {(i ** 2) for i in (1, 2, 3)}
57 {(i ** 2) for i, _ in ((1, 'a'), (2, 'b'), (3, 'c'))}
58 {((i ** 2) + j) for i in (1, 2, 3) for j in (1, 2, 3)}
59 [i for i in (1, 2, 3)]
60 [(i ** 2) for i in (1, 2, 3)]
61 [(i ** 2) for i, _ in ((1, 'a'), (2, 'b'), (3, 'c'))]
62 [((i ** 2) + j) for i in (1, 2, 3) for j in (1, 2, 3)]
63 {i: 0 for i in (1, 2, 3)}
64 {i: j for i, j in ((1, 'a'), (2, 'b'), (3, 'c'))}
65 Python3 > Python2 > COBOL
66 Life is Life
67 call()
68 call(arg)
69 call(kwarg='hey')
70 call(arg, kwarg='hey')
71 call(arg, another, kwarg='hey', **kwargs)
72 lukasz.langa.pl
73 call.me(maybe)
74 1 .real
75 1.0 .real
76 ....__class__
77 list[str]
78 dict[str, int]
79 tuple[str, ...]
80 tuple[str, int, float, dict[str, int]]
81 slice[0]
82 slice[0:1]
83 slice[0:1:2]
84 slice[:]
85 slice[:-1]
86 slice[1:]
87 slice[::-1]
88 (str or None) if (sys.version_info[0] > (3,)) else (str or bytes or None)
89 f'f-string without formatted values is just a string'
90 f'{{NOT a formatted value}}'
91 f'some f-string with {a} {few():.2f} {formatted.values!r}'
92 f"{f'{nested} inner'} outer"
93 f'space between opening braces: { {a for a in (1, 2, 3)}}'
94 {'2.7': dead, '3.7': long_live or die_hard}
95 {'2.7', '3.6', '3.7', '3.8', '3.9', '4.0' if gilectomy else '3.10'}
96 [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 or A, 11 or B, 12 or C]
97 (SomeName)
98 SomeName
99 (Good, Bad, Ugly)
100 (i for i in (1, 2, 3))
101 ((i ** 2) for i in (1, 2, 3))
102 ((i ** 2) for i, _ in ((1, 'a'), (2, 'b'), (3, 'c')))
103 (((i ** 2) + j) for i in (1, 2, 3) for j in (1, 2, 3))
104 (*starred)
105 a = (1,)
106 b = 1,
107 c = 1
108 d = (1,) + a + (2,)
109
110
111 def gen():
112     yield from outside_of_generator
113     a = (yield)
114
115
116 async def f():
117     await some.complicated[0].call(with_args=(True or (1 is not 1)))
118
119
120 # output
121
122
123 ...
124 'some_string'
125 b'\\xa3'
126 Name
127 None
128 True
129 False
130 1
131 1.0
132 1j
133 True or False
134 True or False or None
135 True and False
136 True and False and None
137 (Name1 and Name2) or Name3
138 Name1 and Name2 or Name3
139 Name1 or (Name2 and Name3)
140 Name1 or Name2 and Name3
141 (Name1 and Name2) or (Name3 and Name4)
142 Name1 and Name2 or Name3 and Name4
143 Name1 or (Name2 and Name3) or Name4
144 Name1 or Name2 and Name3 or Name4
145 v1 << 2
146 1 >> v2
147 1 % finished
148 1 + v2 - v3 * 4 ^ 5 ** v6 / 7 // 8
149 ((1 + v2) - (v3 * 4)) ^ (((5 ** v6) / 7) // 8)
150 not great
151 ~great
152 +value
153 -1
154 ~int and not v1 ^ 123 + v2 | True
155 (~int) and (not ((v1 ^ (123 + v2)) | True))
156 lambda arg: None
157 lambda a=True: a
158 lambda a, b, c=True: a
159 lambda a, b, c=True, *, d=(1 << v2), e='str': a
160 lambda a, b, c=True, *vararg, d=(v1 << 2), e='str', **kwargs: a + b
161 1 if True else 2
162 str or None if True else str or bytes or None
163 (str or None) if True else (str or bytes or None)
164 str or None if (1 if True else 2) else str or bytes or None
165 (str or None) if (1 if True else 2) else (str or bytes or None)
166 {'2.7': dead, '3.7': (long_live or die_hard)}
167 {'2.7': dead, '3.7': (long_live or die_hard), **{'3.6': verygood}}
168 {**a, **b, **c}
169 {'2.7', '3.6', '3.7', '3.8', '3.9', ('4.0' if gilectomy else '3.10')}
170 ({'a': 'b'}, (True or False), (+value), 'string', b'bytes') or None
171 ()
172 (1,)
173 (1, 2)
174 (1, 2, 3)
175 []
176 [1, 2, 3, 4, 5, 6, 7, 8, 9, (10 or A), (11 or B), (12 or C)]
177 {i for i in (1, 2, 3)}
178 {(i ** 2) for i in (1, 2, 3)}
179 {(i ** 2) for i, _ in ((1, 'a'), (2, 'b'), (3, 'c'))}
180 {((i ** 2) + j) for i in (1, 2, 3) for j in (1, 2, 3)}
181 [i for i in (1, 2, 3)]
182 [(i ** 2) for i in (1, 2, 3)]
183 [(i ** 2) for i, _ in ((1, 'a'), (2, 'b'), (3, 'c'))]
184 [((i ** 2) + j) for i in (1, 2, 3) for j in (1, 2, 3)]
185 {i: 0 for i in (1, 2, 3)}
186 {i: j for i, j in ((1, 'a'), (2, 'b'), (3, 'c'))}
187 Python3 > Python2 > COBOL
188 Life is Life
189 call()
190 call(arg)
191 call(kwarg='hey')
192 call(arg, kwarg='hey')
193 call(arg, another, kwarg='hey', **kwargs)
194 lukasz.langa.pl
195 call.me(maybe)
196 1 .real
197 1.0 .real
198 ....__class__
199 list[str]
200 dict[str, int]
201 tuple[str, ...]
202 tuple[str, int, float, dict[str, int]]
203 slice[0]
204 slice[0:1]
205 slice[0:1:2]
206 slice[:]
207 slice[:-1]
208 slice[1:]
209 slice[::-1]
210 (str or None) if (sys.version_info[0] > (3,)) else (str or bytes or None)
211 f'f-string without formatted values is just a string'
212 f'{{NOT a formatted value}}'
213 f'some f-string with {a} {few():.2f} {formatted.values!r}'
214 f"{f'{nested} inner'} outer"
215 f'space between opening braces: { {a for a in (1, 2, 3)}}'
216 {'2.7': dead, '3.7': long_live or die_hard}
217 {'2.7', '3.6', '3.7', '3.8', '3.9', '4.0' if gilectomy else '3.10'}
218 [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 or A, 11 or B, 12 or C]
219 (SomeName)
220 SomeName
221 (Good, Bad, Ugly)
222 (i for i in (1, 2, 3))
223 ((i ** 2) for i in (1, 2, 3))
224 ((i ** 2) for i, _ in ((1, 'a'), (2, 'b'), (3, 'c')))
225 (((i ** 2) + j) for i in (1, 2, 3) for j in (1, 2, 3))
226 (*starred)
227 a = (1,)
228 b = 1,
229 c = 1
230 d = (1,) + a + (2,)
231
232
233 def gen():
234     yield from outside_of_generator
235
236     a = (yield)
237
238
239 async def f():
240     await some.complicated[0].call(with_args=(True or (1 is not 1)))