summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2015-06-12 15:45:24 -0400
committerTerry Jan Reedy <tjreedy@udel.edu>2015-06-12 15:45:24 -0400
commit679b723395516fef2c5ba3e17d69276662617919 (patch)
treea56dc3f3c0470631e3d98ec55641354097b1580e /Doc
parent47aacc8f695c4253a8fd085adaff1e552d57da48 (diff)
parentbd44ce8ead3b8088ea837446136dd6c15ba980a8 (diff)
downloadcpython-git-679b723395516fef2c5ba3e17d69276662617919.tar.gz
Merge with 3.5
Diffstat (limited to 'Doc')
-rw-r--r--Doc/reference/expressions.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst
index b1cf4a3f00..9d3fdf26fc 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.