summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2013-04-05 13:21:50 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2013-04-05 13:21:50 (GMT)
commit9a411ce9ea01017691ceb0c19ea1c8d1d1c34f4a (patch)
tree74fdadb6613931ba4983d499aa9a6cb2daaa90d3 /Doc
parente463b668e83b71778ac545a15a162d5ec4f15a31 (diff)
downloadcpython-9a411ce9ea01017691ceb0c19ea1c8d1d1c34f4a.zip
cpython-9a411ce9ea01017691ceb0c19ea1c8d1d1c34f4a.tar.gz
cpython-9a411ce9ea01017691ceb0c19ea1c8d1d1c34f4a.tar.bz2
Add link to glossary for hashable term in docs for set type
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/stdtypes.rst7
1 files changed, 4 insertions, 3 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index 60df11d..6ab7c37 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -2811,9 +2811,10 @@ The constructors for both classes work the same:
frozenset([iterable])
Return a new set or frozenset object whose elements are taken from
- *iterable*. The elements of a set must be hashable. To represent sets of
- sets, the inner sets must be :class:`frozenset` objects. If *iterable* is
- not specified, a new empty set is returned.
+ *iterable*. The elements of a set must be :term:`hashable`. To
+ represent sets of sets, the inner sets must be :class:`frozenset`
+ objects. If *iterable* is not specified, a new empty set is
+ returned.
Instances of :class:`set` and :class:`frozenset` provide the following
operations: