summaryrefslogtreecommitdiffstats
path: root/Doc/faq
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-05-21 15:44:41 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-05-21 15:44:41 (GMT)
commit95ae99205e3a9da45b958415af92432ca990914e (patch)
treeda1d36c6c11966c944ae7aac946643670d856b6d /Doc/faq
parentcaf3024fa662bcbba242013cdecf5d5c2a6092b7 (diff)
downloadcpython-95ae99205e3a9da45b958415af92432ca990914e.zip
cpython-95ae99205e3a9da45b958415af92432ca990914e.tar.gz
cpython-95ae99205e3a9da45b958415af92432ca990914e.tar.bz2
#17973: fix technical inaccuracy in faq entry (it now passes doctest).
Diffstat (limited to 'Doc/faq')
-rw-r--r--Doc/faq/programming.rst13
1 files changed, 8 insertions, 5 deletions
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst
index 7713450..6a720d1 100644
--- a/Doc/faq/programming.rst
+++ b/Doc/faq/programming.rst
@@ -1131,7 +1131,7 @@ a tuple points to.
Under the covers, what this augmented assignment statement is doing is
approximately this::
- >>> result = a_tuple[0].__iadd__(1)
+ >>> result = a_tuple[0] + 1
>>> a_tuple[0] = result
Traceback (most recent call last):
...
@@ -1154,16 +1154,19 @@ that even though there was an error, the append worked::
>>> a_tuple[0]
['foo', 'item']
-To see why this happens, you need to know that for lists, ``__iadd__`` is equivalent
-to calling ``extend`` on the list and returning the list. That's why we say
-that for lists, ``+=`` is a "shorthand" for ``list.extend``::
+To see why this happens, you need to know that (a) if an object implements an
+``__iadd__`` magic method, it gets called when the ``+=`` augmented assignment
+is executed, and its return value is what gets used in the assignment statement;
+and (b) for lists, ``__iadd__`` is equivalent to calling ``extend`` on the list
+and returning the list. That's why we say that for lists, ``+=`` is a
+"shorthand" for ``list.extend``::
>>> a_list = []
>>> a_list += [1]
>>> a_list
[1]
-is equivalent to::
+This is equivalent to::
>>> result = a_list.__iadd__([1])
>>> a_list = result