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 ned.deily
Recipients corona10, eric.araujo, ned.deily, petr.viktorin, shihai1991
Date 2020-10-21.20:30:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1603312243.29.0.818405094166.issue41626@roundup.psfhosted.org>
In-reply-to
Content
To address some of the concerns:

- The shebang line in Mac/BuildScript/build-installer.py can be safely removed.

- "Lib/idlelib/pyshell.py for example, maybe the IDLE entry point is just a symlink to that file"
It's not, at least for unix-y builds. In [install-prefix], an "idle*" script is installed of the form:

#![install-prefix]/bin/python3.10

from idlelib.pyshell import main
if __name__ == '__main__':
    main()

So there is an abolute link to the correct interpreter and shebang is not used.
History
Date User Action Args
2020-10-21 20:32:39ned.deilyunlinkissue41626 messages
2020-10-21 20:30:43ned.deilysetrecipients: + ned.deily, eric.araujo, petr.viktorin, corona10, shihai1991
2020-10-21 20:30:43ned.deilysetmessageid: <1603312243.29.0.818405094166.issue41626@roundup.psfhosted.org>
2020-10-21 20:30:43ned.deilylinkissue41626 messages
2020-10-21 20:30:43ned.deilycreate