mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-04 03:13:24 +00:00

* test/lisp/align-tests.el (align-python): New test. * test/lisp/align-resources/python-mode.erts: New file.
29 lines
317 B
Text
29 lines
317 B
Text
Name: align assignments
|
|
|
|
=-=
|
|
foo = "bar"
|
|
x = 1
|
|
zzzzz = True
|
|
y = None
|
|
=-=
|
|
foo = "bar"
|
|
x = 1
|
|
zzzzz = True
|
|
y = None
|
|
=-=-=
|
|
|
|
Name: python-chain-logic and basic-line-continuation
|
|
|
|
=-=
|
|
if foo or\
|
|
b and \
|
|
bcxxx and \
|
|
c:
|
|
pass
|
|
=-=
|
|
if foo or \
|
|
b and \
|
|
bcxxx and \
|
|
c:
|
|
pass
|
|
=-=-=
|