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.05:00:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1559019622.46.0.165389178518.issue36839@roundup.psfhosted.org>
In-reply-to
Content
I don't like this.
It removes guarantee that code object is constant / immutable.

> Because the code objects are on random pages and are ref counted the ref counts can cause all of the code to not be shared across processes.

These ref counts are not incremented or decremented typically, until shutting down.
If you want to avoid CoW when shutting down, you can use os._exit.
History
Date User Action Args
2019-05-28 05:00:22methanesetrecipients: + methane, dino.viehland, eric.snow
2019-05-28 05:00:22methanesetmessageid: <1559019622.46.0.165389178518.issue36839@roundup.psfhosted.org>
2019-05-28 05:00:22methanelinkissue36839 messages
2019-05-28 05:00:22methanecreate