summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2008-09-04 04:18:09 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2008-09-04 04:18:09 (GMT)
commite838812c884294719f3e853af50b2aba99d12df4 (patch)
treeb2f1fc6c302825c35e2863167abf22af12e78519
parentec12f2347168af98b707c7570a0d9093b7402da5 (diff)
downloadcpython-e838812c884294719f3e853af50b2aba99d12df4.zip
cpython-e838812c884294719f3e853af50b2aba99d12df4.tar.gz
cpython-e838812c884294719f3e853af50b2aba99d12df4.tar.bz2
correct an example
-rw-r--r--Doc/library/stdtypes.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index 5ac062a..685dd2b 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: