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:32:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1603312347.95.0.52007940995.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.[n]

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

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