|
| 1 | +# flags: --preview |
| 2 | + |
| 3 | +t = ( |
| 4 | + {"foo": "very long string", "bar": "another very long string", "baz": "we should run out of space by now"}, # fmt: skip |
| 5 | + {"foo": "bar"}, |
| 6 | +) |
| 7 | + |
| 8 | +t = ( |
| 9 | + { |
| 10 | + "foo": "very long string", |
| 11 | + "bar": "another very long string", |
| 12 | + "baz": "we should run out of space by now", |
| 13 | + }, # fmt: skip |
| 14 | + {"foo": "bar"}, |
| 15 | +) |
| 16 | + |
| 17 | + |
| 18 | +t = ( |
| 19 | + {"foo": "very long string", "bar": "another very long string", "baz": "we should run out of space by now"}, # fmt: skip |
| 20 | + {"foo": "bar",}, |
| 21 | +) |
| 22 | + |
| 23 | +t = ( |
| 24 | + { |
| 25 | + "foo": "very long string", |
| 26 | + "bar": "another very long string", |
| 27 | + "baz": "we should run out of space by now", |
| 28 | + }, # fmt: skip |
| 29 | + {"foo": "bar",}, |
| 30 | +) |
| 31 | + |
| 32 | +# output |
| 33 | +t = ( |
| 34 | + {"foo": "very long string", "bar": "another very long string", "baz": "we should run out of space by now"}, # fmt: skip |
| 35 | + {"foo": "bar"}, |
| 36 | +) |
| 37 | + |
| 38 | +t = ( |
| 39 | + { |
| 40 | + "foo": "very long string", |
| 41 | + "bar": "another very long string", |
| 42 | + "baz": "we should run out of space by now", |
| 43 | + }, # fmt: skip |
| 44 | + {"foo": "bar"}, |
| 45 | +) |
| 46 | + |
| 47 | + |
| 48 | +t = ( |
| 49 | + {"foo": "very long string", "bar": "another very long string", "baz": "we should run out of space by now"}, # fmt: skip |
| 50 | + { |
| 51 | + "foo": "bar", |
| 52 | + }, |
| 53 | +) |
| 54 | + |
| 55 | +t = ( |
| 56 | + { |
| 57 | + "foo": "very long string", |
| 58 | + "bar": "another very long string", |
| 59 | + "baz": "we should run out of space by now", |
| 60 | + }, # fmt: skip |
| 61 | + { |
| 62 | + "foo": "bar", |
| 63 | + }, |
| 64 | +) |
0 commit comments