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 eryksun
Recipients brett.cannon, eryksun, paul.moore, steve.dower, tim.golden, uranusjr, zach.ware
Date 2020-07-21.09:05:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1595322358.38.0.219216200656.issue41327@roundup.psfhosted.org>
In-reply-to
Content
> there would still be value in having a known reporting channel

Windows 10 has a "Feedback Hub" to report problems and search for existing feedback that's similar. You could report a problem with the "AppInstaller" app. In this case, the app execution alias targets "AppInstallerPythonRedirector.exe". This is a GUI program, so CMD won't wait on it and set %errorlevel% if run from an interactive prompt -- not unless one uses `start /w` to force it to wait. (Sidebar: CMD determines that it's a GUI program by querying the PEB address and reading the process PEB via ReadProcessMemory... hack-o-rama.) 

IMO, the installer-redirector in this case should be a console application that prints a message to stdout to inform the user that it's opening the store to install Python. If it fails, it should print an error message to stderr and return a non-zero exit status.
History
Date User Action Args
2020-07-21 09:05:58eryksunsetrecipients: + eryksun, brett.cannon, paul.moore, tim.golden, zach.ware, steve.dower, uranusjr
2020-07-21 09:05:58eryksunsetmessageid: <1595322358.38.0.219216200656.issue41327@roundup.psfhosted.org>
2020-07-21 09:05:58eryksunlinkissue41327 messages
2020-07-21 09:05:58eryksuncreate