From: Gregory P. Smith Date: Thu, 4 Sep 2008 04:18:09 +0000 (+0000) Subject: correct an example X-Git-Tag: v3.0rc1~105 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e838812c884294719f3e853af50b2aba99d12df4;p=thirdparty%2FPython%2Fcpython.git correct an example --- diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 5ac062a52c0e..685dd2b2bba9 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -1956,7 +1956,7 @@ An example of dictionary view usage:: >>> # set operations >>> keys & {'eggs', 'bacon', 'salad'} - {'eggs', 'bacon'} + {'bacon'} .. _bltin-file-objects: