This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
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) * (Python committer) | 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 | |