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 paul.moore
Recipients paul.moore, steve.dower, tim.golden, zach.ware
Date 2016-05-19.21:36:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1463693765.53.0.683202020216.issue27064@psf.upfronthosting.co.za>
In-reply-to
Content
By default, the launcher tries to launch (the latest version of) Python 2 on the user's machine. This can be altered with the configuration file, and if the user doesn't have Python 2 installed Python 3 will be used. Now that we are at Python 3.6, it's about time to change that default to try Python 3 first.

This was discussed on python-ideas in the thread starting at https://mail.python.org/pipermail/python-ideas/2016-March/038667.html. My summary of the consensus was at https://mail.python.org/pipermail/python-ideas/2016-March/038759.html

The key points were:

1. For interactive use, make py.exe launch the latest version
installed on the machine, without special-casing a preference for
Python 2.
2. For shebang lines where an unversioned name is used, retain the
current behaviour (for compatibility with Unix).
3. When the user explicitly chooses a version, or has configured the
launcher via the ini file or environment variables, no change to
current behaviour.
4. The change is small enough that it doesn't need a PEP.

The attached patch implements this behaviour.

I assume the patch is to be applied only to Python 3.6, as it is changed behaviour, not a bug fix.
History
Date User Action Args
2016-05-19 21:36:05paul.mooresetrecipients: + paul.moore, tim.golden, zach.ware, steve.dower
2016-05-19 21:36:05paul.mooresetmessageid: <1463693765.53.0.683202020216.issue27064@psf.upfronthosting.co.za>
2016-05-19 21:36:05paul.moorelinkissue27064 messages
2016-05-19 21:36:05paul.moorecreate