]> 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:

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