From 2a8d195328d067944c95f3195e130c9a41a13c3e Mon Sep 17 00:00:00 2001 From: Sandro Tosi Date: Tue, 2 Aug 2011 18:42:04 +0200 Subject: [PATCH] #12665: Dictionary view example has error in set operation --- Doc/library/stdtypes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 57a60edfb98..83c3bed5b9c 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: