Dont shout to users.

This commit is contained in:
Georg Brandl 2009-03-31 23:01:27 +00:00
parent 3bb5a9642b
commit a08867d8a1
1 changed files with 1 additions and 1 deletions

View File

@ -405,7 +405,7 @@ This is called, appropriately enough, *sequence unpacking* and works for any
sequence on the right-hand side. Sequence unpacking requires the list of
variables on the left to have the same number of elements as the length of the
sequence. Note that multiple assignment is really just a combination of tuple
packing and sequence unpacking!
packing and sequence unpacking.
.. XXX Add a bit on the difference between tuples and lists.