[Python-checkins] cpython (3.4): Closes issue #24405: mark set display as code.

terry.reedy python-checkins at python.org
Fri Jun 12 21:46:17 CEST 2015


https://hg.python.org/cpython/rev/ccb0f43964e0
changeset:   96582:ccb0f43964e0
branch:      3.4
parent:      96576:188c9d2204f0
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Fri Jun 12 15:44:45 2015 -0400
summary:
  Closes issue #24405: mark set display as code.

files:
  Doc/reference/expressions.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst
--- a/Doc/reference/expressions.rst
+++ b/Doc/reference/expressions.rst
@@ -1095,7 +1095,7 @@
 
 * 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.

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list