Comment on Python Mode in EmacsparentComments−yangyang15yIt's not just parallel assignment, it's destructuring assignment: >>> a, (b, (c, d), e) = 1, (2, [3, 4], 5) >>> a 1 >>> b 2 >>> c 3 >>> d 4 >>> e 5 The question is how far you go with the highlighting.
Comments
It's not just parallel assignment, it's destructuring assignment:
The question is how far you go with the highlighting.