Skip to content

Comment on Python Mode in Emacsparent

Comments

It'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.
AboutSource Built by g1lg1l

Hackerly is an independent reader for Hacker News, built on the public HN API. Not affiliated with Y Combinator.