aboutsummaryrefslogtreecommitdiffstats
path: root/lua/tests/indent/python/join_lines.py
diff options
context:
space:
mode:
Diffstat (limited to 'lua/tests/indent/python/join_lines.py')
-rw-r--r--lua/tests/indent/python/join_lines.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/lua/tests/indent/python/join_lines.py b/lua/tests/indent/python/join_lines.py
new file mode 100644
index 000000000..491b2cc37
--- /dev/null
+++ b/lua/tests/indent/python/join_lines.py
@@ -0,0 +1,8 @@
+a = 2 \
+ + 2
+
+b = 'hello' \
+ 'world'
+
+c = lambda x: \
+ x + 3