This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author methane
Recipients dino.viehland, eric.snow, methane
Date 2019-05-28.23:58:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1559087912.88.0.351316889682.issue36839@roundup.psfhosted.org>
In-reply-to
Content
read-only is slightly different than const / immutable.

const / immutable means anyone can not modify the memory.

read-only means only the memory should not be modified through
the buffer.  But underlaying memory block can be modified by
owner who creates buffer.

For example, you can create read only buffer from bytearray,
or even raw C char array.  It doesn't violate semantics of read-only.
History
Date User Action Args
2019-05-28 23:58:32methanesetrecipients: + methane, dino.viehland, eric.snow
2019-05-28 23:58:32methanesetmessageid: <1559087912.88.0.351316889682.issue36839@roundup.psfhosted.org>
2019-05-28 23:58:32methanelinkissue36839 messages
2019-05-28 23:58:32methanecreate