[issue12200] bdist_wininst install_script not run on uninstall

2021-01-11 Thread STINNER Victor
STINNER Victor added the comment: The distutils bdist_wininst command has been removed in Python 3.10: see bpo-42802. -- nosy: +vstinner resolution: -> wont fix stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue12200] bdist_wininst install_script not run on uninstall

2011-06-03 Thread Éric Araujo
Éric Araujo added the comment: If it’s not too much hassle for you and if it doesn’t improve maintenance costs, we’d feel safer with a test. Martin, could you review this patch? -- nosy: +loewis ___ Python tracker

[issue12200] bdist_wininst install_script not run on uninstall

2011-06-01 Thread Mark Hammond
Mark Hammond added the comment: (OTOH though, I could tweak the patch to work in a built tree - it would mean appending "PCBuild" to the dir and retrying the DLL load if the other options fail...) -- ___ Python tracker

[issue12200] bdist_wininst install_script not run on uninstall

2011-06-01 Thread Mark Hammond
Mark Hammond added the comment: Adding tests would be fairly painful - there is no test infrastructure in place for generating and running installers at all, and worse, the changes are likely to not work correctly when run from a Python "build" tree when the built DLL is not installed into Sy

[issue12200] bdist_wininst install_script not run on uninstall

2011-06-01 Thread Éric Araujo
Éric Araujo added the comment: I cannot review the patch (I don’t know C), but I will trust you. Could you add a test to prevent regressions? -- versions: -Python 3.4 ___ Python tracker

[issue12200] bdist_wininst install_script not run on uninstall

2011-05-30 Thread Mark Hammond
Changes by Mark Hammond : -- assignee: tarek -> mhammond keywords: +patch stage: -> patch review versions: +Python 2.7, Python 3.2, Python 3.3, Python 3.4 Added file: http://bugs.python.org/file22205/issue12200.patch ___ Python tracker

[issue12200] bdist_wininst install_script not run on uninstall

2011-05-27 Thread Mark Hammond
Changes by Mark Hammond : Added file: http://bugs.python.org/file22162/hello-install.py ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue12200] bdist_wininst install_script not run on uninstall

2011-05-27 Thread Mark Hammond
Changes by Mark Hammond : Added file: http://bugs.python.org/file22161/hello.py ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue12200] bdist_wininst install_script not run on uninstall

2011-05-27 Thread Mark Hammond
New submission from Mark Hammond : Probably in all versions, but certainly in 2.7. If you create an installer with bdist_wininst and specify an install_script, that script is not run on uninstallation. See attached test case: setup.py specifies an install_script which just appends argv to %TE