diff options
author | Georg Brandl <georg@python.org> | 2009-03-31 23:01:27 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-03-31 23:01:27 (GMT) |
commit | a08867d8a147201cd10f580e87b126e034770428 (patch) | |
tree | e510925a2d88fe8421a82b98f3b74938a25fa312 /Doc/tutorial | |
parent | 3bb5a9642bc49ebab1ca0f4369f8e3ca485421d7 (diff) | |
download | cpython-a08867d8a147201cd10f580e87b126e034770428.zip cpython-a08867d8a147201cd10f580e87b126e034770428.tar.gz cpython-a08867d8a147201cd10f580e87b126e034770428.tar.bz2 |
Dont shout to users.
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/datastructures.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/datastructures.rst b/Doc/tutorial/datastructures.rst index ec62fad..a56fd2b 100644 --- a/Doc/tutorial/datastructures.rst +++ b/Doc/tutorial/datastructures.rst @@ -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. |