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.
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
26 1 + v2 - v3 * 4 ^ 5 ** v6 / 7 // 8
27 ((1 + v2) - (v3 * 4)) ^ (((5 ** v6) / 7) // 8)
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
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
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}}
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
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
72 call(arg, kwarg='hey')
73 call(arg, another, kwarg='hey', **kwargs)
74 call(this_is_a_very_long_variable_which_will_force_a_delimiter_split, arg, another, kwarg='hey', **kwargs) # note: no trailing comma pre-3.6
83 tuple[str, int, float, dict[str, int]]
91 (str or None) if (sys.version_info[0] > (3,)) else (str or bytes or None)
92 {'2.7': dead, '3.7': long_live or die_hard}
93 {'2.7', '3.6', '3.7', '3.8', '3.9', '4.0' if gilectomy else '3.10'}
94 [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 or A, 11 or B, 12 or C]
98 (i for i in (1, 2, 3))
99 ((i ** 2) for i in (1, 2, 3))
100 ((i ** 2) for i, _ in ((1, 'a'), (2, 'b'), (3, 'c')))
101 (((i ** 2) + j) for i in (1, 2, 3) for j in (1, 2, 3))
107 what_is_up_with_those_new_coord_names = (coord_names + set(vars_to_create)) + set(vars_to_remove)
108 what_is_up_with_those_new_coord_names = (coord_names | set(vars_to_create)) - set(vars_to_remove)
112 yield from outside_of_generator
117 await some.complicated[0].call(with_args=(True or (1 is not 1)))
134 True or False or None
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
148 1 + v2 - v3 * 4 ^ 5 ** v6 / 7 // 8
149 ((1 + v2) - (v3 * 4)) ^ (((5 ** v6) / 7) // 8)
154 ~int and not v1 ^ 123 + v2 | True
155 (~int) and (not ((v1 ^ (123 + v2)) | True))
156 flags & ~select.EPOLLIN and waiters.write_task is not None
159 lambda a, b, c=True: a
160 lambda a, b, c=True, *, d=(1 << v2), e='str': a
161 lambda a, b, c=True, *vararg, d=(v1 << 2), e='str', **kwargs: a + b
163 str or None if True else str or bytes or None
164 (str or None) if True else (str or bytes or None)
165 str or None if (1 if True else 2) else str or bytes or None
166 (str or None) if (1 if True else 2) else (str or bytes or None)
167 {'2.7': dead, '3.7': (long_live or die_hard)}
168 {'2.7': dead, '3.7': (long_live or die_hard), **{'3.6': verygood}}
170 {'2.7', '3.6', '3.7', '3.8', '3.9', ('4.0' if gilectomy else '3.10')}
171 ({'a': 'b'}, (True or False), (+value), 'string', b'bytes') or None
177 [1, 2, 3, 4, 5, 6, 7, 8, 9, (10 or A), (11 or B), (12 or C)]
178 {i for i in (1, 2, 3)}
179 {(i ** 2) for i in (1, 2, 3)}
180 {(i ** 2) for i, _ in ((1, 'a'), (2, 'b'), (3, 'c'))}
181 {((i ** 2) + j) for i in (1, 2, 3) for j in (1, 2, 3)}
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: 0 for i in (1, 2, 3)}
187 {i: j for i, j in ((1, 'a'), (2, 'b'), (3, 'c'))}
190 for k, v in this_is_a_very_long_variable_which_will_cause_a_trailing_comma_which_breaks_the_comprehension
192 Python3 > Python2 > COBOL
197 call(arg, kwarg='hey')
198 call(arg, another, kwarg='hey', **kwargs)
200 this_is_a_very_long_variable_which_will_force_a_delimiter_split,
205 ) # note: no trailing comma pre-3.6
214 tuple[str, int, float, dict[str, int]]
222 (str or None) if (sys.version_info[0] > (3,)) else (str or bytes or None)
223 {'2.7': dead, '3.7': long_live or die_hard}
224 {'2.7', '3.6', '3.7', '3.8', '3.9', '4.0' if gilectomy else '3.10'}
225 [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 or A, 11 or B, 12 or C]
229 (i for i in (1, 2, 3))
230 ((i ** 2) for i in (1, 2, 3))
231 ((i ** 2) for i, _ in ((1, 'a'), (2, 'b'), (3, 'c')))
232 (((i ** 2) + j) for i in (1, 2, 3) for j in (1, 2, 3))
238 what_is_up_with_those_new_coord_names = (coord_names + set(vars_to_create)) + set(
241 what_is_up_with_those_new_coord_names = (coord_names | set(vars_to_create)) - set(
247 yield from outside_of_generator
253 await some.complicated[0].call(with_args=(True or (1 is not 1)))