aboutsummaryrefslogtreecommitdiffstats
path: root/test/lisp/align-resources/python-mode.erts
diff options
context:
space:
mode:
Diffstat (limited to 'test/lisp/align-resources/python-mode.erts')
-rw-r--r--test/lisp/align-resources/python-mode.erts29
1 files changed, 29 insertions, 0 deletions
diff --git a/test/lisp/align-resources/python-mode.erts b/test/lisp/align-resources/python-mode.erts
new file mode 100644
index 00000000000..1ce50b32dba
--- /dev/null
+++ b/test/lisp/align-resources/python-mode.erts
@@ -0,0 +1,29 @@
1Name: align assignments
2
3=-=
4foo = "bar"
5x = 1
6zzzzz = True
7y = None
8=-=
9foo = "bar"
10x = 1
11zzzzz = True
12y = None
13=-=-=
14
15Name: python-chain-logic and basic-line-continuation
16
17=-=
18if foo or\
19 b and \
20 bcxxx and \
21 c:
22 pass
23=-=
24if foo or \
25 b and \
26 bcxxx and \
27 c:
28 pass
29=-=-=