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 brett.cannon
Recipients brett.cannon, eric.araujo, eric.snow
Date 2012-06-14.15:32:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1339687935.65.0.498183624491.issue15056@psf.upfronthosting.co.za>
In-reply-to
Content
So sys.dont_write_bytecode is there to prevent bytecode writing but not loading. This is an issue for some systems (e.g. clusters) where there are so many processes running Python that they start to trample each others bytecode files and it leads to malformed data. If you set sys.implementation.cache_tag to None you stop all bytecode usage (reading and writing), and thus is "disabled" entirely,  not just for writing.
History
Date User Action Args
2012-06-14 15:32:15brett.cannonsetrecipients: + brett.cannon, eric.araujo, eric.snow
2012-06-14 15:32:15brett.cannonsetmessageid: <1339687935.65.0.498183624491.issue15056@psf.upfronthosting.co.za>
2012-06-14 15:32:15brett.cannonlinkissue15056 messages
2012-06-14 15:32:14brett.cannoncreate