From: Sandro Tosi Date: Tue, 2 Aug 2011 16:42:04 +0000 (+0200) Subject: #12665: Dictionary view example has error in set operation X-Git-Tag: v3.2.2rc1~32 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2a8d195328d067944c95f3195e130c9a41a13c3e;p=thirdparty%2FPython%2Fcpython.git #12665: Dictionary view example has error in set operation --- diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 57a60edfb98c..83c3bed5b9cf 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -2318,7 +2318,7 @@ An example of dictionary view usage:: >>> keys & {'eggs', 'bacon', 'salad'} {'bacon'} >>> keys ^ {'sausage', 'juice'} - {'juice', 'eggs', 'bacon', 'spam'} + {'juice', 'sausage', 'bacon', 'spam'} .. _typememoryview: