diff options
Diffstat (limited to 'tests/indent/python/aligned_indent_2.py')
| -rw-r--r-- | tests/indent/python/aligned_indent_2.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/indent/python/aligned_indent_2.py b/tests/indent/python/aligned_indent_2.py new file mode 100644 index 000000000..124f7142f --- /dev/null +++ b/tests/indent/python/aligned_indent_2.py @@ -0,0 +1,12 @@ +if True: + print(1, 2, 3) + +if True: + print( + 1, + 2, + 3 + ) + print(1, + 2, + 3) |
