[issue37064] Feature request: option to keep/add flags to pathfix.

2019-09-25 Thread STINNER Victor
STINNER Victor added the comment: New changeset 2e566bf35e96f0d6ca6fe291f179e832d1c32186 by Victor Stinner in branch '3.8': bpo-37064: Skip test_tools.test_pathfix if installed (GH-15705) (GH-16389) https://github.com/python/cpython/commit/2e566bf35e96f0d6ca6fe291f179e832d1c32186 --

[issue37064] Feature request: option to keep/add flags to pathfix.

2019-09-25 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +15971 pull_request: https://github.com/python/cpython/pull/16389 ___ Python tracker ___ __

[issue37064] Feature request: option to keep/add flags to pathfix.

2019-09-25 Thread STINNER Victor
STINNER Victor added the comment: Thanks Patrik Kopkan for your contributions! It's now part of 3.8 and master branches. Your work will be part of the incoming Python 3.8.0 final release. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed

[issue37064] Feature request: option to keep/add flags to pathfix.

2019-09-25 Thread STINNER Victor
STINNER Victor added the comment: New changeset c71c54c62600fd721baed3c96709e3d6e9c33817 by Victor Stinner in branch '3.8': bpo-37064: Add -k and -a options to pathfix.py tool (GH-16387) https://github.com/python/cpython/commit/c71c54c62600fd721baed3c96709e3d6e9c33817 -- __

[issue37064] Feature request: option to keep/add flags to pathfix.

2019-09-25 Thread STINNER Victor
STINNER Victor added the comment: I wrote PR 16387 to backport pathfix changes from Python 3.8. The changes add tests which make me confident that it's safe to backport the changes. Currently, pathfix has no test at all in Python 3.8. -- ___ Pytho

[issue37064] Feature request: option to keep/add flags to pathfix.

2019-09-25 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +15969 pull_request: https://github.com/python/cpython/pull/16387 ___ Python tracker ___ __

[issue37064] Feature request: option to keep/add flags to pathfix.

2019-09-25 Thread STINNER Victor
STINNER Victor added the comment: New changeset 1dc1acbd73f05f14c974b7ce1041787d7abef31e by Victor Stinner (PatrikKopkan) in branch 'master': bpo-37064: Add option -a to pathfix.py tool (GH-15717) https://github.com/python/cpython/commit/1dc1acbd73f05f14c974b7ce1041787d7abef31e --

[issue37064] Feature request: option to keep/add flags to pathfix.

2019-09-06 Thread Patrik Kopkan
Change by Patrik Kopkan : -- pull_requests: +15371 pull_request: https://github.com/python/cpython/pull/15717 ___ Python tracker ___ ___

[issue37064] Feature request: option to keep/add flags to pathfix.

2019-09-05 Thread STINNER Victor
STINNER Victor added the comment: New changeset 3f43ceff186da09978d0aff257bb18b8ac7611f7 by Victor Stinner in branch 'master': bpo-37064: Skip test_tools.test_pathfix if installed (GH-15705) https://github.com/python/cpython/commit/3f43ceff186da09978d0aff257bb18b8ac7611f7 -- __

[issue37064] Feature request: option to keep/add flags to pathfix.

2019-09-05 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +15359 pull_request: https://github.com/python/cpython/pull/15705 ___ Python tracker ___ __

[issue37064] Feature request: option to keep/add flags to pathfix.

2019-09-05 Thread STINNER Victor
STINNER Victor added the comment: The newly added test fails if Python is installed: https://buildbot.python.org/all/#/builders/188/builds/927 == FAIL: test_pathfix (test.test_tools.test_pathfix.TestPathfixFunctional) ---

[issue37064] Feature request: option to keep/add flags to pathfix.

2019-09-05 Thread STINNER Victor
STINNER Victor added the comment: New changeset 50254ac4c179cb412e90682098c97db786143929 by Victor Stinner (PatrikKopkan) in branch 'master': bpo-37064: Add option -k to Tools/scripts/pathfix.py (GH-15548) https://github.com/python/cpython/commit/50254ac4c179cb412e90682098c97db786143929 ---

[issue37064] Feature request: option to keep/add flags to pathfix.

2019-08-27 Thread Patrik Kopkan
Change by Patrik Kopkan : -- pull_requests: +15225 pull_request: https://github.com/python/cpython/pull/15548 ___ Python tracker ___ ___

[issue37064] Feature request: option to keep/add flags to pathfix.

2019-05-27 Thread Patrik Kopkan
Patrik Kopkan added the comment: Example: pathfix.py -i /usr/bin/python ./directory --> would change the shebang of every script in this directory recursively to #! /usr/bin/python. That's handy but if you would have script like this: #! /usr/bin/env -flags and wanted to keep the flags. You wo

[issue37064] Feature request: option to keep/add flags to pathfix.

2019-05-27 Thread SilentGhost
Change by SilentGhost : -- type: -> enhancement ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue37064] Feature request: option to keep/add flags to pathfix.

2019-05-27 Thread Miro Hrončok
Change by Miro Hrončok : -- nosy: +hroncok ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue37064] Feature request: option to keep/add flags to pathfix.

2019-05-27 Thread Miro Hrončok
Change by Miro Hrončok : -- components: +Demos and Tools versions: +Python 3.8, Python 3.9 ___ Python tracker ___ ___ Python-bugs-lis

[issue37064] Feature request: option to keep/add flags to pathfix.

2019-05-27 Thread Patrik Kopkan
Change by Patrik Kopkan : -- keywords: +patch pull_requests: +13497 stage: -> patch review pull_request: https://github.com/python/cpython/pull/13591 ___ Python tracker ___ __

[issue37064] Feature request: option to keep/add flags to pathfix.

2019-05-27 Thread Patrik Kopkan
New submission from Patrik Kopkan : Hello, Pathfix is nice simple tool for changing shebang lines. However, it is lacking a way how to keep/add flags making this tool impractical sometimes. -- messages: 343622 nosy: pkopkan priority: normal severity: normal status: open title: Feature