[issue32852] trace changes sys.argv from list to tuple

2018-02-17 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for your contribution Kyle. Usually backports a made after merging the original PR. Thanks to bots this is done in half-automatical way. -- resolution: -> fixed stage: patch review -> resolved status: open ->

[issue32852] trace changes sys.argv from list to tuple

2018-02-16 Thread miss-islington
miss-islington added the comment: New changeset dda938683c48197ab7e775144136f433a5d43103 by Miss Islington (bot) in branch '3.6': bpo-32852: Fix trace changing sys.argv to tuple. (GH-5692)

[issue32852] trace changes sys.argv from list to tuple

2018-02-16 Thread miss-islington
miss-islington added the comment: New changeset afb5e5583694798793d44f35f901aa912ece278a by Miss Islington (bot) in branch '3.7': bpo-32852: Fix trace changing sys.argv to tuple. (GH-5692)

[issue32852] trace changes sys.argv from list to tuple

2018-02-16 Thread miss-islington
Change by miss-islington : -- pull_requests: +5507 ___ Python tracker ___

[issue32852] trace changes sys.argv from list to tuple

2018-02-16 Thread miss-islington
Change by miss-islington : -- pull_requests: +5506 ___ Python tracker ___

[issue32852] trace changes sys.argv from list to tuple

2018-02-16 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 9f4223261fd129ad7b9a09b2b0d625d1bb90b22b by Serhiy Storchaka (Kyle Altendorf) in branch 'master': bpo-32852: Fix trace changing sys.argv to tuple. (GH-5692)

[issue32852] trace changes sys.argv from list to tuple

2018-02-16 Thread Kyle Altendorf
Change by Kyle Altendorf : -- pull_requests: +5494 ___ Python tracker ___ ___

[issue32852] trace changes sys.argv from list to tuple

2018-02-16 Thread Kyle Altendorf
Change by Kyle Altendorf : -- pull_requests: +5493 ___ Python tracker ___ ___

[issue32852] trace changes sys.argv from list to tuple

2018-02-16 Thread Kyle Altendorf
Change by Kyle Altendorf : -- pull_requests: +5492 ___ Python tracker ___ ___

[issue32852] trace changes sys.argv from list to tuple

2018-02-16 Thread Kyle Altendorf
Change by Kyle Altendorf : -- pull_requests: +5491 ___ Python tracker ___ ___

[issue32852] trace changes sys.argv from list to tuple

2018-02-16 Thread Kyle Altendorf
Change by Kyle Altendorf : -- versions: +Python 3.8 ___ Python tracker ___ ___

[issue32852] trace changes sys.argv from list to tuple

2018-02-15 Thread Kyle Altendorf
Change by Kyle Altendorf : -- keywords: +patch pull_requests: +5485 stage: -> patch review ___ Python tracker ___

[issue32852] trace changes sys.argv from list to tuple

2018-02-15 Thread Kyle Altendorf via Python-bugs-list
New submission from Kyle Altendorf : Normally sys.argv is a list but when using the trace module sys.argv gets changed to a tuple. In my case this caused an issue with running an entry point due to the line: sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])