Message184622
| Author | serhiy.storchaka |
|---|---|
| Recipients | ezio.melotti, gpolo, serhiy.storchaka |
| Date | 2013-03-19.08:58:39 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1363683519.76.0.514671428108.issue17478@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
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 |
| 2013-03-19 08:58:39 | serhiy.storchaka | set | recipients: + serhiy.storchaka, gpolo, ezio.melotti |
| 2013-03-19 08:58:39 | serhiy.storchaka | set | messageid: <1363683519.76.0.514671428108.issue17478@psf.upfronthosting.co.za> |
| 2013-03-19 08:58:39 | serhiy.storchaka | link | issue17478 messages |
| 2013-03-19 08:58:39 | serhiy.storchaka | create | |