Issue 17478: Tkinter's split() inconsistent for bytes and unicode strings
Created on 2013-03-19 08:58 by serhiy.storchaka, last changed 2022-04-11 14:57 by admin. This issue is now closed.
| Messages (1) | |||
|---|---|---|---|
| msg184622 - (view) | Author: Serhiy Storchaka (serhiy.storchaka) * ![]() |
Date: 2013-03-19 08:58 | |
Tkinter's split() recursive splits bytes but not unicode strings.
>>> from tkinter import *
>>> t = Tcl()
>>> t.tk.split((b'a 2',))
(('a', '2'),)
>>> t.tk.split(('a 2',))
('a 2',)
|
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022-04-11 14:57:43 | admin | set | github: 61680 |
| 2013-08-03 21:00:15 | serhiy.storchaka | set | status: open -> closed superseder: Tk.split() doesn't work with nested Unicode strings resolution: duplicate stage: resolved |
| 2013-03-19 08:58:39 | serhiy.storchaka | create | |
