[issue27319] Multiple item arguments for selection operations

2017-09-24 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset e31eca45e548bf6f439d540f3751516acbc31689 by Serhiy Storchaka (Miss Islington (bot)) in branch '3.6': [3.6] bpo-27319, bpo-31508: Document deprecation in Treeview.selection(). (GH-3667) (#3719) https://github.com/python/cpython/commit/e31eca45e5

[issue27319] Multiple item arguments for selection operations

2017-09-24 Thread Roundup Robot
Changes by Roundup Robot : -- pull_requests: +3702 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue27319] Multiple item arguments for selection operations

2017-09-24 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 2fad10235460ac394cc8b869c41f47aba3d63594 by Serhiy Storchaka in branch 'master': bpo-27319, bpo-31508: Document deprecation in Treeview.selection(). (#3667) https://github.com/python/cpython/commit/2fad10235460ac394cc8b869c41f47aba3d63594

[issue27319] Multiple item arguments for selection operations

2017-09-20 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- pull_requests: +3656 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue27319] Multiple item arguments for selection operations

2016-06-19 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for your review Terry. -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker ___ _

[issue27319] Multiple item arguments for selection operations

2016-06-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7b9ad68db14e by Serhiy Storchaka in branch 'default': Issue #27319: Methods selection_set(), selection_add(), selection_remove() https://hg.python.org/cpython/rev/7b9ad68db14e -- nosy: +python-dev ___ Pyt

[issue27319] Multiple item arguments for selection operations

2016-06-18 Thread Terry J. Reedy
Terry J. Reedy added the comment: Then don't. Better to do nothing until sure than to deprecate and then undeprecate. Thinking about it, I am not sure either. -- ___ Python tracker __

[issue27319] Multiple item arguments for selection operations

2016-06-18 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I'm not sure that passing multiple items as a tuple should be deprecated. -- ___ Python tracker ___ __

[issue27319] Multiple item arguments for selection operations

2016-06-15 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I was puzzled because on one of my machines selection() returned ''. But after updating the workspace the problem is gone. This is just a consequence of the issue26386 patch. -- assignee: -> serhiy.storchaka ___

[issue27319] Multiple item arguments for selection operations

2016-06-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: I reverted the patch, restarted IDLE, and now I get () as I should. Lets forget about it. Apply or ignore comments as you wish. -- stage: patch review -> commit review ___ Python tracker

[issue27319] Multiple item arguments for selection operations

2016-06-14 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: splitlist() always returns a tuple. How selection() ca return a string?! -- ___ Python tracker ___ ___

[issue27319] Multiple item arguments for selection operations

2016-06-14 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I'm puzzled too. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue27319] Multiple item arguments for selection operations

2016-06-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: Code looks good, just a couple of comments. But I am puzzled by string return before patch >>> tv.selection() '' versus tuple return after patch (which seems correct). >>> tv.selection() () -- ___ Python tracker

[issue27319] Multiple item arguments for selection operations

2016-06-14 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: For now methods selection_set(), selection_add(), selection_remove() and selection_toggle() of ttk.TreeView take the single argument that should be either the single item id or a tuple or list of item ids. In contrary methods delete() and detach() take ite