Discussion:
[Python-3000-checkins] r66207 - python/branches/py3k/Doc/library/stdtypes.rst
gregory.p.smith
2008-09-04 04:18:09 UTC
Permalink
Author: gregory.p.smith
Date: Thu Sep 4 06:18:09 2008
New Revision: 66207

Log:
correct an example


Modified:
python/branches/py3k/Doc/library/stdtypes.rst

Modified: python/branches/py3k/Doc/library/stdtypes.rst
==============================================================================
--- python/branches/py3k/Doc/library/stdtypes.rst (original)
+++ python/branches/py3k/Doc/library/stdtypes.rst Thu Sep 4 06:18:09 2008
@@ -1956,7 +1956,7 @@
# set operations
keys & {'eggs', 'bacon', 'salad'}
- {'eggs', 'bacon'}
+ {'bacon'}


.. _bltin-file-objects:

Loading...