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 Rhamphoryncus
Recipients Rhamphoryncus, fdirosa, nnorwitz, timbishop, vslavik
Date 2008-06-03.23:58:26
SpamBayes Score 0.0070399274
Marked as misclassified No
Message-id <1212537510.43.0.626188051311.issue1758146@psf.upfronthosting.co.za>
In-reply-to
Content
Right, so it's only the python modules loaded as part of the app that
need to be isolated.  You don't need the stdlib or any other part of the
interpreter to be isolated.

This could be done either by not using the normal import mechanism
(build your own on top of exec()) or by some magic to generate a
different root package for each "interpreter" (so you show up in
sys.modules as '_mypkg183.somemodule'.)
History
Date User Action Args
2008-06-03 23:58:31Rhamphoryncussetspambayes_score: 0.00703993 -> 0.0070399274
recipients: + Rhamphoryncus, nnorwitz, timbishop, vslavik, fdirosa
2008-06-03 23:58:30Rhamphoryncussetspambayes_score: 0.00703993 -> 0.00703993
messageid: <1212537510.43.0.626188051311.issue1758146@psf.upfronthosting.co.za>
2008-06-03 23:58:29Rhamphoryncuslinkissue1758146 messages
2008-06-03 23:58:27Rhamphoryncuscreate