summaryrefslogtreecommitdiffstats
path: root/Doc/reference
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2012-02-18 00:58:41 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2012-02-18 00:58:41 (GMT)
commit93abdd1ab80b014a32a97342c263cf6d623d4ce6 (patch)
tree49186cc5e48f4afc660e9398e35128cd5453efa8 /Doc/reference
parentc48cfe37d22dfe37bb163fe87dacefdaf786fef6 (diff)
parentead1de2f0320fa80f717891fd3ae465172fcd96a (diff)
downloadcpython-93abdd1ab80b014a32a97342c263cf6d623d4ce6.zip
cpython-93abdd1ab80b014a32a97342c263cf6d623d4ce6.tar.gz
cpython-93abdd1ab80b014a32a97342c263cf6d623d4ce6.tar.bz2
Merge with 3.2 closes 14023
Diffstat (limited to 'Doc/reference')
-rw-r--r--Doc/reference/expressions.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst
index 9746162..9624b60 100644
--- a/Doc/reference/expressions.rst
+++ b/Doc/reference/expressions.rst
@@ -116,11 +116,11 @@ literals. See section :ref:`literals` for details.
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: