diff options
| author | Terry Jan Reedy <tjreedy@udel.edu> | 2012-02-17 19:56:58 -0500 |
|---|---|---|
| committer | Terry Jan Reedy <tjreedy@udel.edu> | 2012-02-17 19:56:58 -0500 |
| commit | ead1de2f0320fa80f717891fd3ae465172fcd96a (patch) | |
| tree | 3e8cf067f2584d76fef25301cf62e4b04179a1dd /Doc/reference/expressions.rst | |
| parent | 4279bc7aef89ff668b81e5dd7514cc5ec281a753 (diff) | |
| download | cpython-git-ead1de2f0320fa80f717891fd3ae465172fcd96a.tar.gz | |
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.)
Diffstat (limited to 'Doc/reference/expressions.rst')
| -rw-r--r-- | Doc/reference/expressions.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index 655ebdebc0..5b684684af 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: |
