summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSandro Tosi <sandro.tosi@gmail.com>2011-08-02 16:43:49 (GMT)
committerSandro Tosi <sandro.tosi@gmail.com>2011-08-02 16:43:49 (GMT)
commite4f9e2ff2198357605e38e4e1cfade5fbe097213 (patch)
tree77884fb206dd9c51a553ea5ffc0f54e68b0a9389
parentb1290a5295159207e86fc25457c14504768938c2 (diff)
parent2a8d195328d067944c95f3195e130c9a41a13c3e (diff)
downloadcpython-e4f9e2ff2198357605e38e4e1cfade5fbe097213.zip
cpython-e4f9e2ff2198357605e38e4e1cfade5fbe097213.tar.gz
cpython-e4f9e2ff2198357605e38e4e1cfade5fbe097213.tar.bz2
#12665: merge with 3.2
-rw-r--r--Doc/library/stdtypes.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index 8a117ba..aa7af6d 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -2329,7 +2329,7 @@ An example of dictionary view usage::
>>> keys & {'eggs', 'bacon', 'salad'}
{'bacon'}
>>> keys ^ {'sausage', 'juice'}
- {'juice', 'eggs', 'bacon', 'spam'}
+ {'juice', 'sausage', 'bacon', 'spam'}
.. _typememoryview: