Merge: #20135: FAQ entry for list mutation. (See also 90b07d422bd9.)

I accidentally merged this in 90b07d422bd9; this merge addresses the
last review comments on the patch.
This commit is contained in:
R David Murray 2014-09-29 10:19:20 -04:00
commit d034ece5b3
1 changed files with 1 additions and 1 deletions

View File

@ -473,7 +473,7 @@ There are two factors that produce this result:
After the call to :meth:`~list.append`, the content of the mutable object has
changed from ``[]`` to ``[10]``. Since both the variables refer to the same
object, accessing either one of them accesses the modified value ``[10]``.
object, using either name accesses the modified value ``[10]``.
If we instead assign an immutable object to ``x``::