[Python-checkins] cpython (merge 3.2 -> default): Merge with 3.2 closes 14023

terry.reedy python-checkins at python.org
Sat Feb 18 01:59:15 CET 2012


http://hg.python.org/cpython/rev/47288880cc9e
changeset:   75013:47288880cc9e
parent:      75011:1850f45f6169
parent:      75012:88522997b021
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Fri Feb 17 19:58:41 2012 -0500
summary:
  Merge with 3.2 closes 14023

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


diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst
--- a/Doc/reference/expressions.rst
+++ b/Doc/reference/expressions.rst
@@ -116,11 +116,11 @@
    triple: immutable; data; type
    pair: immutable; object
 
-With the exception of bytes literals, these all correspond to immutable data
-types, and hence the object's identity is less important than its value.
-Multiple evaluations of literals with the same value (either the same occurrence
-in the program text or a different occurrence) may obtain the same object or a
-different object with the same value.
+All literals correspond to immutable data types, and hence the object's identity
+is less important than its value.  Multiple evaluations of literals with the
+same value (either the same occurrence in the program text or a different
+occurrence) may obtain the same object or a different object with the same
+value.
 
 
 .. _parenthesized:

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


More information about the Python-checkins mailing list