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 LarryZA
Recipients LarryZA, paul.moore, steve.dower, tim.golden, zach.ware
Date 2018-07-18.02:09:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1531879775.21.0.56676864532.issue34142@psf.upfronthosting.co.za>
In-reply-to
Content
In the manual it says that the following .ini file will cause the launcher to run Python3.1 for calls of `py` or `py -3`

[defaults]
python=3
python3=3.1

On my Windows 7 machine I have Python2.7-32, Python3.4-64, and Python3.7-64 (installed in that order).

Setting the ini to:

[defaults]
python=3
python3=3.4

results in `py` running 3.7-64 (expected 3.4-64) and `py -3` running 3.4-64.

Setting both to point to 3.4 in the ini will run 3.4-64 for both commands.
History
Date User Action Args
2018-07-18 02:09:35LarryZAsetrecipients: + LarryZA, paul.moore, tim.golden, zach.ware, steve.dower
2018-07-18 02:09:35LarryZAsetmessageid: <1531879775.21.0.56676864532.issue34142@psf.upfronthosting.co.za>
2018-07-18 02:09:34LarryZAlinkissue34142 messages
2018-07-18 02:09:33LarryZAcreate