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 martin.panter
Recipients NeilGirdhar, benjamin.peterson, docs@python, martin.panter, moigagoo
Date 2015-07-06.23:59:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1436227145.63.0.235943352035.issue24136@psf.upfronthosting.co.za>
In-reply-to
Content
Yes I think it is expected and documented that the leftovers are turned into a list. See <https://docs.python.org/3.5/reference/simple_stmts.html#index-6>. I originally had similar confusion, expectating the starred target to become a tuple, because people often use tuple-like syntax, but:

>>> generator_expression = (2**i for i in range(4))
>>> (one, *a_list, eight) = generator_expression
>>> a_list  # Not a tuple!
[2, 4]

One thing in the section I linked above that should also be fixed is that the assigned object may be any iterable, not just a sequence.

About changing the tutorial, just be careful you don’t add unnecessary complication too early. The original * and ** syntax for function parameters is not mentioned until <https://docs.python.org/3.5/tutorial/controlflow.html#more-on-defining-functions>. Later, argument unpacking: <https://docs.python.org/3.5/tutorial/controlflow.html#unpacking-argument-lists>. Assignment unpacking doesn’t seem to mentioned at all (not that I am saying it should be). It might be higher priority to update the main reference documentation first.
History
Date User Action Args
2015-07-06 23:59:05martin.pantersetrecipients: + martin.panter, benjamin.peterson, docs@python, NeilGirdhar, moigagoo
2015-07-06 23:59:05martin.pantersetmessageid: <1436227145.63.0.235943352035.issue24136@psf.upfronthosting.co.za>
2015-07-06 23:59:05martin.panterlinkissue24136 messages
2015-07-06 23:59:05martin.pantercreate