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 chrullrich
Recipients chrullrich, paul.moore, steve.dower, tim.golden, zach.ware
Date 2015-09-18.09:03:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1442566984.06.0.904088337084.issue25165@psf.upfronthosting.co.za>
In-reply-to
Content
Uninstalling 3.5 on Windows removes the py.exe launcher. If it was installed in the system-wide path (%SYSTEMROOT%), it may have replaced an existing copy from an earlier version. In this case, removing the launcher will break this remaining installation, requiring a repair.

Instead, the launcher should not be deleted. It uses the static CRT, hence has no DLL dependencies that would be removed by the uninstallation, and it will -- as PEP 397 demands -- select the Python version it starts based on the command line and the available installations.

Ceterum censeo: This bug could have been avoided by using MSI as the distribution package format and using the same component code for the launcher file in all supporting versions. Even if the file itself is different, the identical component code would have ensured through reference counting that it would only have been removed with the last referencing installation. Upward compatibility of older launchers could have become a problem, though.
History
Date User Action Args
2015-09-18 09:03:04chrullrichsetrecipients: + chrullrich, paul.moore, tim.golden, zach.ware, steve.dower
2015-09-18 09:03:04chrullrichsetmessageid: <1442566984.06.0.904088337084.issue25165@psf.upfronthosting.co.za>
2015-09-18 09:03:04chrullrichlinkissue25165 messages
2015-09-18 09:03:03chrullrichcreate