Hacker News new | ask | show | jobs
by indosauros 3987 days ago

    >>> L(*stuff, 'a', 'b')
    SyntaxError: only named arguments may follow *expression

    >>> L(*stuff, *stuff)
    SyntaxError: invalid syntax
1 comments

Good point... yes, having it language-level supported does add a lot of good stuff...