mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-04 11:23:24 +00:00
30 lines
317 B
Text
30 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
|
||
|
=-=-=
|