[issue38371] Tkinter: deprecate the split() method

2021-10-19 Thread Zachary Ware
Zachary Ware added the comment: New changeset 085ccb0f177988065dbe9ef4c5cda434560066bc by Zachary Ware in branch 'main': bpo-38371: Remove remaining use of tk.split from bigmem tcl test (GH-29082) https://github.com/python/cpython/commit/085ccb0f177988065dbe9ef4c5cda434560066bc --

[issue38371] Tkinter: deprecate the split() method

2021-10-19 Thread Zachary Ware
Change by Zachary Ware : -- nosy: +zach.ware nosy_count: 2.0 -> 3.0 pull_requests: +27350 pull_request: https://github.com/python/cpython/pull/29082 ___ Python tracker ___

[issue38371] Tkinter: deprecate the split() method

2021-09-08 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset f235dd0784b92824565c4a4e72adc70fa3eab68f by Erlend Egeberg Aasland in branch 'main': bpo-38371: Remove deprecated `tkinter` split() method (GH-28237) https://github.com/python/cpython/commit/f235dd0784b92824565c4a4e72adc70fa3eab68f

[issue38371] Tkinter: deprecate the split() method

2021-09-08 Thread Erlend E. Aasland
Change by Erlend E. Aasland : -- nosy: +erlendaasland nosy_count: 1.0 -> 2.0 pull_requests: +26657 pull_request: https://github.com/python/cpython/pull/28237 ___ Python tracker

[issue38371] Tkinter: deprecate the split() method

2019-10-08 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue38371] Tkinter: deprecate the split() method

2019-10-08 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset d05b000c6bcd39dba4f4b2656e45954802649562 by Serhiy Storchaka in branch 'master': bpo-38371: Tkinter: deprecate the split() method. (GH-16584) https://github.com/python/cpython/commit/d05b000c6bcd39dba4f4b2656e45954802649562 --

[issue38371] Tkinter: deprecate the split() method

2019-10-04 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +16175 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16584 ___ Python tracker

[issue38371] Tkinter: deprecate the split() method

2019-10-04 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : The tkapp.split() method has weird behavior. It splits a string recursively, so the type of items and the depth of nesting depends on spaces in string values. For example: >>> import tkinter >>> root = tkinter.Tcl() >>> root.tk.split('Hi') 'Hi' >>>