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 wolma
Recipients paul.moore, steve.dower, tim.golden, wolma, zach.ware
Date 2015-12-03.17:25:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1449163552.68.0.156481310646.issue25789@psf.upfronthosting.co.za>
In-reply-to
Content
from the console:

> py -3.7

or any other not installed Python version gives:
Requested Python version (3.7) not installed


However, when the launcher is executed from python via subprocess.Popen:

>>>import subprocess
>>>p=subprocess.Popen(['py', '-3.7'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
>>>p.communicate()
(b'', b'')

the error message is not accessible. (Error messages from any successfully launched Python interpreter are available through p.stderr though.)
History
Date User Action Args
2015-12-03 17:25:52wolmasetrecipients: + wolma, paul.moore, tim.golden, zach.ware, steve.dower
2015-12-03 17:25:52wolmasetmessageid: <1449163552.68.0.156481310646.issue25789@psf.upfronthosting.co.za>
2015-12-03 17:25:52wolmalinkissue25789 messages
2015-12-03 17:25:52wolmacreate