| Tor Norbye | 814f829 | 2014-03-06 17:27:18 -0800 | [diff] [blame^] | 1 | if True \ |
| 2 | or False: | ||||
| 3 | pass | ||||
| 4 | elif \ | ||||
| 5 | False: | ||||
| 6 | pass | ||||
| 7 | |||||
| 8 | for i in \ | ||||
| 9 | range(1, 100): | ||||
| 10 | pass | ||||
| 11 | |||||
| 12 | with open('file1') as file1, \ | ||||
| 13 | open('file2') as file2: | ||||
| 14 | pass | ||||
| 15 | |||||
| 16 | |||||
| 17 | class \ | ||||
| 18 | A(object): | ||||
| 19 | pass | ||||
| 20 | |||||
| 21 | |||||
| 22 | def \ | ||||
| 23 | foo(): | ||||
| 24 | pass | ||||
| 25 | |||||
| 26 | |||||
| 27 | try: | ||||
| 28 | pass | ||||
| 29 | except \ | ||||
| 30 | AttributeError: | ||||
| 31 | pass | ||||
| 32 | |||||
| 33 | while value \ | ||||
| 34 | in values: # <- missing continuation indent here | ||||
| 35 | do_smth() | ||||
| 36 | |||||
| 37 | if (1 + x. | ||||
| 38 | value()): | ||||
| 39 | pass | ||||