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 steve.dower
Recipients bstorm, eryksun, ned.deily, paul.moore, steve.dower, tim.golden, vinay.sajip, vstinner, zach.ware
Date 2019-06-30.05:01:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1561870902.08.0.198479790467.issue37369@roundup.psfhosted.org>
In-reply-to
Content
> I'm not sure of the purpose of sys._base_executable. Maybe open a separated issue to make the attribute public? I'm not sure if multiprocessing (for example) should use it, or if sys.executble should be used.

Yeah, it's a bit more complex. Sometimes it's needed and often not, depending on platform. For multiprocessing we need it on Windows because of the handle inheritance that's used, which only goes one subprocess deep,and we use special knowledge to make it work even in a venv.

But at least having it there means we can use it when needed without having to define its semantics for 100% of cases. Venvs make things really hard the way they're currently done...
History
Date User Action Args
2019-06-30 05:01:42steve.dowersetrecipients: + steve.dower, paul.moore, vinay.sajip, vstinner, tim.golden, ned.deily, zach.ware, eryksun, bstorm
2019-06-30 05:01:42steve.dowersetmessageid: <1561870902.08.0.198479790467.issue37369@roundup.psfhosted.org>
2019-06-30 05:01:42steve.dowerlinkissue37369 messages
2019-06-30 05:01:41steve.dowercreate