[Python-checkins] r53658 - python/trunk/Doc/lib/libstdtypes.tex

raymond.hettinger python-checkins at python.org
Wed Feb 7 22:04:21 CET 2007


Author: raymond.hettinger
Date: Wed Feb  7 22:04:20 2007
New Revision: 53658

Modified:
   python/trunk/Doc/lib/libstdtypes.tex
Log:
SF: 1397711 Set docs conflated immutable and hashable

Modified: python/trunk/Doc/lib/libstdtypes.tex
==============================================================================
--- python/trunk/Doc/lib/libstdtypes.tex	(original)
+++ python/trunk/Doc/lib/libstdtypes.tex	Wed Feb  7 22:04:20 2007
@@ -1224,7 +1224,7 @@
 	    \label{types-set}}
 \obindex{set}
 
-A \dfn{set} object is an unordered collection of immutable values.
+A \dfn{set} object is an unordered collection of distinct hashable objects.
 Common uses include membership testing, removing duplicates from a sequence,
 and computing mathematical operations such as intersection, union, difference,
 and symmetric difference.


More information about the Python-checkins mailing list