summaryrefslogtreecommitdiffstats
path: root/Doc/faq/programming.rst
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2014-03-09 22:51:35 (GMT)
committerR David Murray <rdmurray@bitdance.com>2014-03-09 22:51:35 (GMT)
commit6ae5eef5429e8663024ad32c6f38c89f9171aea0 (patch)
treeca3dcb0b13a22e2499d7e3f12963e2dbe46ce123 /Doc/faq/programming.rst
parentc4025770565116a5150cc22224053f8e7f392cb1 (diff)
parent14d7b718bacb6b8a0702489d04895ea4e4b11131 (diff)
downloadcpython-6ae5eef5429e8663024ad32c6f38c89f9171aea0.zip
cpython-6ae5eef5429e8663024ad32c6f38c89f9171aea0.tar.gz
cpython-6ae5eef5429e8663024ad32c6f38c89f9171aea0.tar.bz2
Merge #19953: Clarify the wording of the augmented assignment discussion.
Diffstat (limited to 'Doc/faq/programming.rst')
-rw-r--r--Doc/faq/programming.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst
index 79c7289..d514a80 100644
--- a/Doc/faq/programming.rst
+++ b/Doc/faq/programming.rst
@@ -1103,6 +1103,7 @@ Use a list comprehension::
result = [obj.method() for obj in mylist]
+.. _faq-augmented-assignment-tuple-error:
Why does a_tuple[i] += ['item'] raise an exception when the addition works?
---------------------------------------------------------------------------