diff options
author | Sandro Tosi <sandro.tosi@gmail.com> | 2011-08-02 16:42:04 (GMT) |
---|---|---|
committer | Sandro Tosi <sandro.tosi@gmail.com> | 2011-08-02 16:42:04 (GMT) |
commit | 2a8d195328d067944c95f3195e130c9a41a13c3e (patch) | |
tree | 14600e08c2b9e0787a03c13ec2929433ada2e55e /Doc/library | |
parent | 692dba244b4f984b4fa15a87e53bd33fad25777e (diff) | |
download | cpython-2a8d195328d067944c95f3195e130c9a41a13c3e.zip cpython-2a8d195328d067944c95f3195e130c9a41a13c3e.tar.gz cpython-2a8d195328d067944c95f3195e130c9a41a13c3e.tar.bz2 |
#12665: Dictionary view example has error in set operation
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/stdtypes.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 57a60ed..83c3bed 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: |