Commit ead1de2f authored by Terry Jan Reedy's avatar Terry Jan Reedy

Issue 14023 Revert edit to 2.7 version. (I suspect edit is from when we thought

to to makes bytes mutable, before deciding to add bytearrays.)
parent 4279bc7a
...@@ -116,11 +116,11 @@ literals. See section :ref:`literals` for details. ...@@ -116,11 +116,11 @@ literals. See section :ref:`literals` for details.
triple: immutable; data; type triple: immutable; data; type
pair: immutable; object pair: immutable; object
With the exception of bytes literals, these all correspond to immutable data All literals correspond to immutable data types, and hence the object's identity
types, and hence the object's identity is less important than its value. is less important than its value. Multiple evaluations of literals with the
Multiple evaluations of literals with the same value (either the same occurrence same value (either the same occurrence in the program text or a different
in the program text or a different occurrence) may obtain the same object or a occurrence) may obtain the same object or a different object with the same
different object with the same value. value.
.. _parenthesized: .. _parenthesized:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment