diff options
author | R David Murray <rdmurray@bitdance.com> | 2014-03-09 22:51:35 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2014-03-09 22:51:35 (GMT) |
commit | 6ae5eef5429e8663024ad32c6f38c89f9171aea0 (patch) | |
tree | ca3dcb0b13a22e2499d7e3f12963e2dbe46ce123 /Doc/faq/programming.rst | |
parent | c4025770565116a5150cc22224053f8e7f392cb1 (diff) | |
parent | 14d7b718bacb6b8a0702489d04895ea4e4b11131 (diff) | |
download | cpython-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.rst | 1 |
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? --------------------------------------------------------------------------- |