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
40 manylambdas = lambda x=lambda y=lambda z=1: z: y(): x()
41 foo = (lambda port_id, ignore_missing: {"port1": port1_resource, "port2": port2_resource}[port_id])
43 str or None if True else str or bytes or None
44 (str or None) if True else (str or bytes or None)
45 str or None if (1 if True else 2) else str or bytes or None
46 (str or None) if (1 if True else 2) else (str or bytes or None)
47 ((super_long_variable_name or None) if (1 if super_long_test_name else 2) else (str or bytes or None))
48 {'2.7': dead, '3.7': (long_live or die_hard)}
49 {'2.7': dead, '3.7': (long_live or die_hard), **{'3.6': verygood}}
51 {'2.7', '3.6', '3.7', '3.8', '3.9', ('4.0' if gilectomy else '3.10')}
52 ({'a': 'b'}, (True or False), (+value), 'string', b'bytes') or None
58 [1, 2, 3, 4, 5, 6, 7, 8, 9, (10 or A), (11 or B), (12 or C)]
64 [this_is_a_very_long_variable_which_will_force_a_delimiter_split, element, another, *more]
65 {i for i in (1, 2, 3)}
66 {(i ** 2) for i in (1, 2, 3)}
67 {(i ** 2) for i, _ in ((1, 'a'), (2, 'b'), (3, 'c'))}
68 {((i ** 2) + j) for i in (1, 2, 3) for j in (1, 2, 3)}
69 [i for i in (1, 2, 3)]
70 [(i ** 2) for i in (1, 2, 3)]
71 [(i ** 2) for i, _ in ((1, 'a'), (2, 'b'), (3, 'c'))]
72 [((i ** 2) + j) for i in (1, 2, 3) for j in (1, 2, 3)]
73 {i: 0 for i in (1, 2, 3)}
74 {i: j for i, j in ((1, 'a'), (2, 'b'), (3, 'c'))}
75 {a: b * 2 for a, b in dictionary.items()}
76 {a: b * -2 for a, b in dictionary.items()}
77 {k: v for k, v in this_is_a_very_long_variable_which_will_cause_a_trailing_comma_which_breaks_the_comprehension}
78 Python3 > Python2 > COBOL
83 call(arg, kwarg='hey')
84 call(arg, another, kwarg='hey', **kwargs)
85 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
88 call(**self.screen_kwargs)
89 call(b, **self.screen_kwargs)
98 tuple[str, int, float, dict[str, int],]
99 very_long_variable_name_filters: t.List[
100 t.Tuple[str, t.Union[str, t.List[t.Optional[str]]]],
120 numpy[:, (0, 1, 2, 5)]
128 (str or None) if (sys.version_info[0] > (3,)) else (str or bytes or None)
129 {'2.7': dead, '3.7': long_live or die_hard}
130 {'2.7', '3.6', '3.7', '3.8', '3.9', '4.0' if gilectomy else '3.10'}
131 [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 or A, 11 or B, 12 or C]
135 (i for i in (1, 2, 3))
136 ((i ** 2) for i in (1, 2, 3))
137 ((i ** 2) for i, _ in ((1, 'a'), (2, 'b'), (3, 'c')))
138 (((i ** 2) + j) for i in (1, 2, 3) for j in (1, 2, 3))
140 {"id": "1","type": "type","started_at": now(),"ended_at": now() + timedelta(days=10),"priority": 1,"import_session_id": 1,**kwargs}
146 what_is_up_with_those_new_coord_names = (coord_names + set(vars_to_create)) + set(vars_to_remove)
147 what_is_up_with_those_new_coord_names = (coord_names | set(vars_to_create)) - set(vars_to_remove)
148 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()
150 authors.łukasz.say_thanks()
152 A: 0.25 * (10.0 / 12),
153 B: 0.1 * (10.0 / 12),
154 C: 0.1 * (10.0 / 12),
155 D: 0.1 * (10.0 / 12),
159 yield from outside_of_generator
163 await some.complicated[0].call(with_args=(True or (1 is not 1)))
165 print(**{1: 3} if False else {x: x for x in range(3)})
167 assert(not Test),("Short message")
168 assert this is ComplexTest and not requirements.fit_in_a_single_line(force=False), "Short message"
169 assert(((parens is TooMany)))
170 for x, in (1,), (2,), (3,): ...
172 for z in (i for i in (1, 2, 3)): ...
173 for i in (call()): ...
174 for j in (1 + (2 + 3)): ...
175 while(this and that): ...
177 threading.current_thread() != threading.main_thread() and
178 threading.current_thread() != threading.main_thread() or
179 signal.getsignal(signal.SIGINT) != signal.default_int_handler
183 aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa |
184 aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
188 aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa &
189 aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
193 aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +
194 aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
198 aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -
199 aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
203 aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa *
204 aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
208 aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa /
209 aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
213 ~ aaaa.a + aaaa.b - aaaa.c * aaaa.d / aaaa.e | aaaa.f & aaaa.g % aaaa.h ^ aaaa.i << aaaa.k >> aaaa.l ** aaaa.m // aaaa.n
217 ~ aaaaaaaa.a + aaaaaaaa.b - aaaaaaaa.c @ aaaaaaaa.d / aaaaaaaa.e | aaaaaaaa.f & aaaaaaaa.g % aaaaaaaa.h ^ aaaaaaaa.i << aaaaaaaa.k >> aaaaaaaa.l ** aaaaaaaa.m // aaaaaaaa.n
221 ~ aaaaaaaaaaaaaaaa.a + aaaaaaaaaaaaaaaa.b - aaaaaaaaaaaaaaaa.c * aaaaaaaaaaaaaaaa.d @ aaaaaaaaaaaaaaaa.e | aaaaaaaaaaaaaaaa.f & aaaaaaaaaaaaaaaa.g % aaaaaaaaaaaaaaaa.h ^ aaaaaaaaaaaaaaaa.i << aaaaaaaaaaaaaaaa.k >> aaaaaaaaaaaaaaaa.l ** aaaaaaaaaaaaaaaa.m // aaaaaaaaaaaaaaaa.n
225 # standalone comment at ENDMARKER
242 True or False or None
244 True and False and None
245 (Name1 and Name2) or Name3
246 Name1 and Name2 or Name3
247 Name1 or (Name2 and Name3)
248 Name1 or Name2 and Name3
249 (Name1 and Name2) or (Name3 and Name4)
250 Name1 and Name2 or Name3 and Name4
251 Name1 or (Name2 and Name3) or Name4
252 Name1 or Name2 and Name3 or Name4
256 1 + v2 - v3 * 4 ^ 5 ** v6 / 7 // 8
257 ((1 + v2) - (v3 * 4)) ^ (((5 ** v6) / 7) // 8)
262 ~int and not v1 ^ 123 + v2 | True
263 (~int) and (not ((v1 ^ (123 + v2)) | True))
264 flags & ~select.EPOLLIN and waiters.write_task is not None
267 lambda a, b, c=True: a
268 lambda a, b, c=True, *, d=(1 << v2), e="str": a
269 lambda a, b, c=True, *vararg, d=(v1 << 2), e="str", **kwargs: a + b
270 manylambdas = lambda x=lambda y=lambda z=1: z: y(): x()
271 foo = lambda port_id, ignore_missing: {
272 "port1": port1_resource, "port2": port2_resource
277 str or None if True else str or bytes or None
278 (str or None) if True else (str or bytes or None)
279 str or None if (1 if True else 2) else str or bytes or None
280 (str or None) if (1 if True else 2) else (str or bytes or None)
282 (super_long_variable_name or None)
283 if (1 if super_long_test_name else 2)
284 else (str or bytes or None)
286 {"2.7": dead, "3.7": (long_live or die_hard)}
287 {"2.7": dead, "3.7": (long_live or die_hard), **{"3.6": verygood}}
289 {"2.7", "3.6", "3.7", "3.8", "3.9", ("4.0" if gilectomy else "3.10")}
290 ({"a": "b"}, (True or False), (+value), "string", b"bytes") or None
296 [1, 2, 3, 4, 5, 6, 7, 8, 9, (10 or A), (11 or B), (12 or C)]
303 this_is_a_very_long_variable_which_will_force_a_delimiter_split,
308 {i for i in (1, 2, 3)}
309 {(i ** 2) for i in (1, 2, 3)}
310 {(i ** 2) for i, _ in ((1, "a"), (2, "b"), (3, "c"))}
311 {((i ** 2) + j) for i in (1, 2, 3) for j in (1, 2, 3)}
312 [i for i in (1, 2, 3)]
313 [(i ** 2) for i in (1, 2, 3)]
314 [(i ** 2) for i, _ in ((1, "a"), (2, "b"), (3, "c"))]
315 [((i ** 2) + j) for i in (1, 2, 3) for j in (1, 2, 3)]
316 {i: 0 for i in (1, 2, 3)}
317 {i: j for i, j in ((1, "a"), (2, "b"), (3, "c"))}
318 {a: b * 2 for a, b in dictionary.items()}
319 {a: b * -2 for a, b in dictionary.items()}
322 for k, v in this_is_a_very_long_variable_which_will_cause_a_trailing_comma_which_breaks_the_comprehension
324 Python3 > Python2 > COBOL
329 call(arg, kwarg="hey")
330 call(arg, another, kwarg="hey", **kwargs)
332 this_is_a_very_long_variable_which_will_force_a_delimiter_split,
337 ) # note: no trailing comma pre-3.6
339 call(a, *gidgets[:2])
340 call(**self.screen_kwargs)
341 call(b, **self.screen_kwargs)
350 tuple[str, int, float, dict[str, int]]
351 very_long_variable_name_filters: t.List[
352 t.Tuple[str, t.Union[str, t.List[t.Optional[str]]]],
372 numpy[:, (0, 1, 2, 5)]
380 (str or None) if (sys.version_info[0] > (3,)) else (str or bytes or None)
381 {"2.7": dead, "3.7": long_live or die_hard}
382 {"2.7", "3.6", "3.7", "3.8", "3.9", "4.0" if gilectomy else "3.10"}
383 [1, 2, 3, 4, 5, 6, 7, 8, 9, 10 or A, 11 or B, 12 or C]
387 (i for i in (1, 2, 3))
388 ((i ** 2) for i in (1, 2, 3))
389 ((i ** 2) for i, _ in ((1, "a"), (2, "b"), (3, "c")))
390 (((i ** 2) + j) for i in (1, 2, 3) for j in (1, 2, 3))
396 "ended_at": now() + timedelta(days=10),
398 "import_session_id": 1,
406 what_is_up_with_those_new_coord_names = (
407 (coord_names + set(vars_to_create)) + set(vars_to_remove)
409 what_is_up_with_those_new_coord_names = (
410 (coord_names | set(vars_to_create)) - set(vars_to_remove)
412 result = session.query(models.Customer.id).filter(
413 models.Customer.account_id == account_id, models.Customer.email == email_address
415 models.Customer.id.asc()
418 authors.łukasz.say_thanks()
420 A: 0.25 * (10.0 / 12),
421 B: 0.1 * (10.0 / 12),
422 C: 0.1 * (10.0 / 12),
423 D: 0.1 * (10.0 / 12),
428 yield from outside_of_generator
433 await some.complicated[0].call(with_args=(True or (1 is not 1)))
437 print(**{1: 3} if False else {x: x for x in range(3)})
439 assert not Test, "Short message"
441 this is ComplexTest and not requirements.fit_in_a_single_line(force=False)
443 assert parens is TooMany
444 for (x,) in (1,), (2,), (3,):
448 for z in (i for i in (1, 2, 3)):
452 for j in 1 + (2 + 3):
457 threading.current_thread() != threading.main_thread()
458 and threading.current_thread() != threading.main_thread()
459 or signal.getsignal(signal.SIGINT) != signal.default_int_handler
463 aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
464 | aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
468 aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
469 & aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
473 aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
474 + aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
478 aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
479 - aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
483 aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
484 * aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
488 aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
489 / aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
493 ~aaaa.a + aaaa.b - aaaa.c * aaaa.d / aaaa.e
494 | aaaa.f & aaaa.g % aaaa.h ^ aaaa.i << aaaa.k >> aaaa.l ** aaaa.m // aaaa.n
498 ~aaaaaaaa.a + aaaaaaaa.b - aaaaaaaa.c @ aaaaaaaa.d / aaaaaaaa.e
499 | aaaaaaaa.f & aaaaaaaa.g % aaaaaaaa.h
500 ^ aaaaaaaa.i << aaaaaaaa.k >> aaaaaaaa.l ** aaaaaaaa.m // aaaaaaaa.n
506 - aaaaaaaaaaaaaaaa.c * aaaaaaaaaaaaaaaa.d @ aaaaaaaaaaaaaaaa.e
507 | aaaaaaaaaaaaaaaa.f & aaaaaaaaaaaaaaaa.g % aaaaaaaaaaaaaaaa.h
509 << aaaaaaaaaaaaaaaa.k
510 >> aaaaaaaaaaaaaaaa.l ** aaaaaaaaaaaaaaaa.m // aaaaaaaaaaaaaaaa.n
514 # standalone comment at ENDMARKER