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)]
57 {i for i in (1, 2, 3)}
58 {(i ** 2) for i in (1, 2, 3)}
59 {(i ** 2) for i, _ in ((1, 'a'), (2, 'b'), (3, 'c'))}
60 {((i ** 2) + j) for i in (1, 2, 3) for j in (1, 2, 3)}
61 [i for i in (1, 2, 3)]
62 [(i ** 2) for i in (1, 2, 3)]
63 [(i ** 2) for i, _ in ((1, 'a'), (2, 'b'), (3, 'c'))]
64 [((i ** 2) + j) for i in (1, 2, 3) for j in (1, 2, 3)]
65 {i: 0 for i in (1, 2, 3)}
66 {i: j for i, j in ((1, 'a'), (2, 'b'), (3, 'c'))}
67 {a: b * 2 for a, b in dictionary.items()}
68 {a: b * -2 for a, b in dictionary.items()}
69 {k: v for k, v in this_is_a_very_long_variable_which_will_cause_a_trailing_comma_which_breaks_the_comprehension}
70 Python3 > Python2 > COBOL
75 call(arg, kwarg='hey')
76 call(arg, another, kwarg='hey', **kwargs)
77 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
79 call(**self.screen_kwargs)
88 tuple[str, int, float, dict[str, int],]
89 very_long_variable_name_filters: t.List[
90 t.Tuple[str, t.Union[str, t.List[t.Optional[str]]]],
110 numpy[:, (0, 1, 2, 5)]
118 (str or None) if (sys.version_info[0] > (3,)) else (str or bytes or None)
119 {'2.7': dead, '3.7': long_live or die_hard}
120 {'2.7', '3.6', '3.7', '3.8', '3.9', '4.0' if gilectomy else '3.10'}
121 [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 or A, 11 or B, 12 or C]
125 (i for i in (1, 2, 3))
126 ((i ** 2) for i in (1, 2, 3))
127 ((i ** 2) for i, _ in ((1, 'a'), (2, 'b'), (3, 'c')))
128 (((i ** 2) + j) for i in (1, 2, 3) for j in (1, 2, 3))
135 what_is_up_with_those_new_coord_names = (coord_names + set(vars_to_create)) + set(vars_to_remove)
136 what_is_up_with_those_new_coord_names = (coord_names | set(vars_to_create)) - set(vars_to_remove)
137 result = session.query(models.Customer.id).filter(models.Customer.account_id == account_id, models.Customer.email == email_address).order_by(models.Customer.id.asc(),).all()
140 yield from outside_of_generator
144 await some.complicated[0].call(with_args=(True or (1 is not 1)))
147 threading.current_thread() != threading.main_thread() and
148 threading.current_thread() != threading.main_thread() or
149 signal.getsignal(signal.SIGINT) != signal.default_int_handler
153 # standalone comment at ENDMARKER
170 True or False or None
172 True and False and None
173 (Name1 and Name2) or Name3
174 Name1 and Name2 or Name3
175 Name1 or (Name2 and Name3)
176 Name1 or Name2 and Name3
177 (Name1 and Name2) or (Name3 and Name4)
178 Name1 and Name2 or Name3 and Name4
179 Name1 or (Name2 and Name3) or Name4
180 Name1 or Name2 and Name3 or Name4
184 1 + v2 - v3 * 4 ^ 5 ** v6 / 7 // 8
185 ((1 + v2) - (v3 * 4)) ^ (((5 ** v6) / 7) // 8)
190 ~int and not v1 ^ 123 + v2 | True
191 (~int) and (not ((v1 ^ (123 + v2)) | True))
192 flags & ~select.EPOLLIN and waiters.write_task is not None
195 lambda a, b, c=True: a
196 lambda a, b, c=True, *, d=(1 << v2), e="str": a
197 lambda a, b, c=True, *vararg, d=(v1 << 2), e="str", **kwargs: a + b
199 str or None if True else str or bytes or None
200 (str or None) if True else (str or bytes or None)
201 str or None if (1 if True else 2) else str or bytes or None
202 (str or None) if (1 if True else 2) else (str or bytes or None)
203 {"2.7": dead, "3.7": (long_live or die_hard)}
204 {"2.7": dead, "3.7": (long_live or die_hard), **{"3.6": verygood}}
206 {"2.7", "3.6", "3.7", "3.8", "3.9", ("4.0" if gilectomy else "3.10")}
207 ({"a": "b"}, (True or False), (+value), "string", b"bytes") or None
213 [1, 2, 3, 4, 5, 6, 7, 8, 9, (10 or A), (11 or B), (12 or C)]
215 {i for i in (1, 2, 3)}
216 {(i ** 2) for i in (1, 2, 3)}
217 {(i ** 2) for i, _ in ((1, "a"), (2, "b"), (3, "c"))}
218 {((i ** 2) + j) for i in (1, 2, 3) for j in (1, 2, 3)}
219 [i for i in (1, 2, 3)]
220 [(i ** 2) for i in (1, 2, 3)]
221 [(i ** 2) for i, _ in ((1, "a"), (2, "b"), (3, "c"))]
222 [((i ** 2) + j) for i in (1, 2, 3) for j in (1, 2, 3)]
223 {i: 0 for i in (1, 2, 3)}
224 {i: j for i, j in ((1, "a"), (2, "b"), (3, "c"))}
225 {a: b * 2 for a, b in dictionary.items()}
226 {a: b * -2 for a, b in dictionary.items()}
229 for k, v in this_is_a_very_long_variable_which_will_cause_a_trailing_comma_which_breaks_the_comprehension
231 Python3 > Python2 > COBOL
236 call(arg, kwarg="hey")
237 call(arg, another, kwarg="hey", **kwargs)
239 this_is_a_very_long_variable_which_will_force_a_delimiter_split,
244 ) # note: no trailing comma pre-3.6
246 call(**self.screen_kwargs)
255 tuple[str, int, float, dict[str, int]]
256 very_long_variable_name_filters: t.List[
257 t.Tuple[str, t.Union[str, t.List[t.Optional[str]]]],
277 numpy[:, (0, 1, 2, 5)]
285 (str or None) if (sys.version_info[0] > (3,)) else (str or bytes or None)
286 {"2.7": dead, "3.7": long_live or die_hard}
287 {"2.7", "3.6", "3.7", "3.8", "3.9", "4.0" if gilectomy else "3.10"}
288 [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 or A, 11 or B, 12 or C]
292 (i for i in (1, 2, 3))
293 ((i ** 2) for i in (1, 2, 3))
294 ((i ** 2) for i, _ in ((1, "a"), (2, "b"), (3, "c")))
295 (((i ** 2) + j) for i in (1, 2, 3) for j in (1, 2, 3))
302 what_is_up_with_those_new_coord_names = (coord_names + set(vars_to_create)) + set(
305 what_is_up_with_those_new_coord_names = (coord_names | set(vars_to_create)) - set(
308 result = session.query(models.Customer.id).filter(
309 models.Customer.account_id == account_id, models.Customer.email == email_address
311 models.Customer.id.asc()
316 yield from outside_of_generator
322 await some.complicated[0].call(with_args=(True or (1 is not 1)))
326 threading.current_thread() != threading.main_thread()
327 and threading.current_thread() != threading.main_thread()
328 or signal.getsignal(signal.SIGINT) != signal.default_int_handler
333 # standalone comment at ENDMARKER