diff options
Diffstat (limited to 'tests/indent/python/control_flow.py')
| -rw-r--r-- | tests/indent/python/control_flow.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/indent/python/control_flow.py b/tests/indent/python/control_flow.py index c8cd2541b..7ec02e3ff 100644 --- a/tests/indent/python/control_flow.py +++ b/tests/indent/python/control_flow.py @@ -20,3 +20,11 @@ except: pass finally: pass + +while (a > 4 and + b > 5): + pass + +try: + pass + |
