diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2015-06-12 19:45:05 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2015-06-12 19:45:05 (GMT) |
commit | bd44ce8ead3b8088ea837446136dd6c15ba980a8 (patch) | |
tree | ffbf6d56752d7b799e68fde3ce0ad9067708bb44 /Doc/reference | |
parent | cec3f56fabc28160341deab8b2ddde4ed74ffcf6 (diff) | |
parent | f5d4523844cad49074a562bad4a7095ed955640d (diff) | |
download | cpython-bd44ce8ead3b8088ea837446136dd6c15ba980a8.zip cpython-bd44ce8ead3b8088ea837446136dd6c15ba980a8.tar.gz cpython-bd44ce8ead3b8088ea837446136dd6c15ba980a8.tar.bz2 |
Merge with 3.4
Diffstat (limited to 'Doc/reference')
-rw-r--r-- | Doc/reference/expressions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index b1cf4a3..9d3fdf2 100644 --- a/Doc/reference/expressions.rst +++ b/Doc/reference/expressions.rst @@ -1117,7 +1117,7 @@ Comparison of objects of the same type depends on the type: * Sets and frozensets define comparison operators to mean subset and superset tests. Those relations do not define total orderings (the two sets ``{1,2}`` - and {2,3} are not equal, nor subsets of one another, nor supersets of one + and ``{2,3}`` are not equal, nor subsets of one another, nor supersets of one another). Accordingly, sets are not appropriate arguments for functions which depend on total ordering. For example, :func:`min`, :func:`max`, and :func:`sorted` produce undefined results given a list of sets as inputs. |