[Python-checkins] cpython (3.2): #12665: Dictionary view example has error in set operation
sandro.tosi
python-checkins at python.org
Tue Aug 2 18:44:55 CEST 2011
http://hg.python.org/cpython/rev/a70cdec027e7
changeset: 71697:a70cdec027e7
branch: 3.2
parent: 71695:25dd1d3f4b88
user: Sandro Tosi <sandro.tosi at gmail.com>
date: Tue Aug 02 18:42:04 2011 +0200
summary:
#12665: Dictionary view example has error in set operation
files:
Doc/library/stdtypes.rst | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -2318,7 +2318,7 @@
>>> keys & {'eggs', 'bacon', 'salad'}
{'bacon'}
>>> keys ^ {'sausage', 'juice'}
- {'juice', 'eggs', 'bacon', 'spam'}
+ {'juice', 'sausage', 'bacon', 'spam'}
.. _typememoryview:
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list