[issue33974] _stringify handles quoted strings incorrectly

2018-06-30 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue33974] _stringify handles quoted strings incorrectly

2018-06-30 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 9b84cc8771f52e9340ea5b676da9a15359c723b6 by Serhiy Storchaka in branch '2.7': [2.7] bpo-33974: Fix passing special characters to ttk widgets. (GH-7986) (GH-8021) https://github.com/python/cpython/commit/9b84cc8771f52e9340ea5b676da9a15359c723b

[issue33974] _stringify handles quoted strings incorrectly

2018-06-30 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +7629 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue33974] _stringify handles quoted strings incorrectly

2018-06-29 Thread miss-islington
miss-islington added the comment: New changeset b2e88fcf63515f8a66759a6fdc75d08a0a440901 by Miss Islington (bot) in branch '3.6': bpo-33974: Fix passing special characters to ttk widgets. (GH-7986) https://github.com/python/cpython/commit/b2e88fcf63515f8a66759a6fdc75d08a0a440901 --

[issue33974] _stringify handles quoted strings incorrectly

2018-06-29 Thread miss-islington
miss-islington added the comment: New changeset 42ea5226642c2a416b32278914fa4738093298ff by Miss Islington (bot) in branch '3.7': bpo-33974: Fix passing special characters to ttk widgets. (GH-7986) https://github.com/python/cpython/commit/42ea5226642c2a416b32278914fa4738093298ff --

[issue33974] _stringify handles quoted strings incorrectly

2018-06-29 Thread miss-islington
Change by miss-islington : -- pull_requests: +7627 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue33974] _stringify handles quoted strings incorrectly

2018-06-29 Thread miss-islington
Change by miss-islington : -- pull_requests: +7626 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue33974] _stringify handles quoted strings incorrectly

2018-06-29 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 5bb5bbfca847524bab5f2368bdb48eedf5dba74f by Serhiy Storchaka in branch 'master': bpo-33974: Fix passing special characters to ttk widgets. (GH-7986) https://github.com/python/cpython/commit/5bb5bbfca847524bab5f2368bdb48eedf5dba74f --

[issue33974] _stringify handles quoted strings incorrectly

2018-06-28 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This issue needs more complex fix. PR 7986 adds necessary changes and tests. Thank you for your report Gauchj. -- versions: +Python 2.7 ___ Python tracker ___

[issue33974] _stringify handles quoted strings incorrectly

2018-06-28 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +7597 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue33974] _stringify handles quoted strings incorrectly

2018-06-27 Thread Gauchj
Gauchj added the comment: I tried to display entries from the Windows Registry in a TreeView. -- ___ Python tracker ___ ___ Python-

[issue33974] _stringify handles quoted strings incorrectly

2018-06-26 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: How did you find this bug? -- assignee: -> serhiy.storchaka nosy: +serhiy.storchaka ___ Python tracker ___ ___

[issue33974] _stringify handles quoted strings incorrectly

2018-06-26 Thread Gauchj
New submission from Gauchj : _stringify escapes special characters so they can be processed by tcl/tk. To that end, two different escaping techniques are implemented: put a backslash in front of every special character or put the entire string in curly braces. However, a string like the follo