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 christian.heimes
Recipients christian.heimes, nedbat, pablogsal, steve.dower
Date 2021-12-10.09:14:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1639127648.86.0.525828877082.issue46028@roundup.psfhosted.org>
In-reply-to
Content
Commit 9f2f7e42269db74a89fc8cd74d82a875787f01d7 has correct _base_executable

$ venv/bin/python
Python 3.11.0a2+ (heads/bpo-45847-simple-115-g9f2f7e42269:9f2f7e42269, Dec 10 2021, 10:09:54) [GCC 11.2.1 20211203 (Red Hat 11.2.1-7)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys._base_executable
'/home/heimes/dev/python/cpython/venv/bin/python'

_base_executable in commit 99fcf1505218464c489d419d4500f126b6d6dc28 is wrong

$ venv/bin/python
Python 3.11.0a2+ (heads/bpo-45847-simple-116-g99fcf150521:99fcf150521, Dec 10 2021, 10:12:35) [GCC 11.2.1 20211203 (Red Hat 11.2.1-7)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import sys
>>> sys._base_executable
'/home/heimes/dev/python/cpython/python'
History
Date User Action Args
2021-12-10 09:14:08christian.heimessetrecipients: + christian.heimes, nedbat, steve.dower, pablogsal
2021-12-10 09:14:08christian.heimessetmessageid: <1639127648.86.0.525828877082.issue46028@roundup.psfhosted.org>
2021-12-10 09:14:08christian.heimeslinkissue46028 messages
2021-12-10 09:14:08christian.heimescreate