This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author steven.daprano
Recipients mjaquier, steven.daprano
Date 2019-10-18.12:41:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1571402464.92.0.989941293655.issue38516@roundup.psfhosted.org>
In-reply-to
Content
Why would they give the same result when the code is different?

    #1 assign c, d, e and everything left over goes into b
    *b, c, d, e, = [1, 2, 3, 4]

    #2 assign c, d and everything left over goes into b
    *b, c, d, = [1, 2, 3, 4]

    #3 assign c and everything left over goes into b
    *b, c, = [1, 2, 3, 4]

    #4 assign nothing and everything left over goes into b
    *b, = [1, 2, 3, 4]
History
Date User Action Args
2019-10-18 12:41:04steven.dapranosetrecipients: + steven.daprano, mjaquier
2019-10-18 12:41:04steven.dapranosetmessageid: <1571402464.92.0.989941293655.issue38516@roundup.psfhosted.org>
2019-10-18 12:41:04steven.dapranolinkissue38516 messages
2019-10-18 12:41:04steven.dapranocreate