]> granicus.if.org Git - python/commitdiff
Issue 14023 Revert edit to 2.7 version. (I suspect edit is from when we thought
authorTerry Jan Reedy <tjreedy@udel.edu>
Sat, 18 Feb 2012 00:56:58 +0000 (19:56 -0500)
committerTerry Jan Reedy <tjreedy@udel.edu>
Sat, 18 Feb 2012 00:56:58 +0000 (19:56 -0500)
to to makes bytes mutable, before deciding to add bytearrays.)

Doc/reference/expressions.rst

index 655ebdebc0f0db01ac232e4063e44a0d2f72a2a3..5b684684af77cea3900fa76c89de6bcc2bc7e03e 100644 (file)
@@ -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: