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 mjaquier
Recipients mjaquier
Date 2019-10-18.12:11:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1571400674.51.0.246530871643.issue38516@roundup.psfhosted.org>
In-reply-to
Content
x = [1,2,3]

Case (1)
*b, = x 
*b == [1, 2, 3]

Case(2)
*b, _ = x 
b = [1,2]



Is it not more logical for this to give consistent values regardless. 

i.e.,

*b, = [1,2,3] ; b == [1,2]

*b, _ = [1,3,2] ;  b == [1,2] ;  _ == [3]
History
Date User Action Args
2019-10-18 12:11:14mjaquiersetrecipients: + mjaquier
2019-10-18 12:11:14mjaquiersetmessageid: <1571400674.51.0.246530871643.issue38516@roundup.psfhosted.org>
2019-10-18 12:11:14mjaquierlinkissue38516 messages
2019-10-18 12:11:14mjaquiercreate