[issue28441] Change sys.executable to include executable suffix

2019-02-27 Thread Ned Deily
Change by Ned Deily : -- versions: +Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue28441] Change sys.executable to include executable suffix

2019-02-27 Thread Inada Naoki
Inada Naoki added the comment: New changeset e5897b67badeb04a04e16e29f7650d833141d67e by Inada Naoki (Miss Islington (bot)) in branch '3.7': bpo-28441: Ensure `.exe` suffix in `sys.executable` on MinGW and Cygwin (GH-4348)

[issue28441] Change sys.executable to include executable suffix

2019-02-26 Thread miss-islington
Change by miss-islington : -- pull_requests: +12087 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue28441] Change sys.executable to include executable suffix

2018-10-05 Thread INADA Naoki
Change by INADA Naoki : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.8 -Python 3.7 ___ Python tracker ___

[issue28441] Change sys.executable to include executable suffix

2018-10-05 Thread INADA Naoki
INADA Naoki added the comment: New changeset 7a7693e9cb12e5571c76331db56a28eef9acb6e0 by INADA Naoki (E. M. Bray) in branch 'master': bpo-28441: Ensure `.exe` suffix in `sys.executable` on MinGW and Cygwin (GH-4348)

[issue28441] Change sys.executable to include executable suffix

2017-11-09 Thread Erik Bray
Change by Erik Bray : -- pull_requests: +4305 ___ Python tracker ___ ___

[issue28441] Change sys.executable to include executable suffix

2016-11-29 Thread Masayuki Yamamoto
Changes by Masayuki Yamamoto : Added file: http://bugs.python.org/file45685/sys-executable-suffix-3.patch ___ Python tracker ___

[issue28441] Change sys.executable to include executable suffix

2016-11-29 Thread Masayuki Yamamoto
Changes by Masayuki Yamamoto : Removed file: http://bugs.python.org/file45684/sys-executable-suffix-3.patch ___ Python tracker ___

[issue28441] Change sys.executable to include executable suffix

2016-11-29 Thread Masayuki Yamamoto
Masayuki Yamamoto added the comment: I updated a patch to check the made path because previous patch has added suffix even to symbolic link. New patch works that If made path is invalid, revert to original. -- Added file: http://bugs.python.org/file45684/sys-executable-suffix-3.patch

[issue28441] Change sys.executable to include executable suffix

2016-11-07 Thread Erik Bray
Changes by Erik Bray : -- stage: -> patch review ___ Python tracker ___ ___

[issue28441] Change sys.executable to include executable suffix

2016-11-07 Thread Erik Bray
Erik Bray added the comment: Thanks! Setting EXE_SUFFIX from the Makefile is much better. -- ___ Python tracker ___

[issue28441] Change sys.executable to include executable suffix

2016-11-02 Thread Masayuki Yamamoto
Masayuki Yamamoto added the comment: I have missed a case of empty progpath. I updated the patch to avoid calling add_exe_suffix() at that case. -- Added file: http://bugs.python.org/file45327/sys-executable-suffix-2.patch ___ Python tracker

[issue28441] Change sys.executable to include executable suffix

2016-10-18 Thread Masayuki Yamamoto
Masayuki Yamamoto added the comment: I agree to add the suffix to solve ambiguous path on Cygwin. And I think the patch should apply to all platforms having executable suffix. Therefore, I modified your patch to remove #if directive for Cygwin, and I changed title to spread covered platforms.