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 nedbat
Recipients christian.heimes, nedbat, pablogsal, steve.dower
Date 2021-12-11.15:45:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1639237536.45.0.58385990214.issue46028@roundup.psfhosted.org>
In-reply-to
Content
Tox isn't needed, just venv from the stdlib:


$ python3.11.0a2 -m venv venv_a2

$ venv_a2/bin/python -c "import sys,os.path; print(e := sys._base_executable); print(os.path.exists(e))"
/private/tmp/venv_a2/bin/python
True

$ python3.11.0a3 -m venv venv_a3

$ venv_a3/bin/python -c "import sys,os.path; print(e := sys._base_executable); print(os.path.exists(e))"
/usr/local/bin/python
False
History
Date User Action Args
2021-12-11 15:45:36nedbatsetrecipients: + nedbat, christian.heimes, steve.dower, pablogsal
2021-12-11 15:45:36nedbatsetmessageid: <1639237536.45.0.58385990214.issue46028@roundup.psfhosted.org>
2021-12-11 15:45:36nedbatlinkissue46028 messages
2021-12-11 15:45:36nedbatcreate