Message 320529 - Python tracker
Message320529
| Author | vstinner |
|---|---|
| Recipients | ezio.melotti, tburke, vstinner |
| Date | 2018-06-27.00:42:05 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1530060126.57.0.56676864532.issue33973@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
isspace() is also true for another non-ASCII character: U+0085 (b'\x85'). >>> ''.join(chr(i) for i in range(256) if chr(i).isspace()) '\t\n\x0b\x0c\r\x1c\x1d\x1e\x1f \x85\xa0' |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2018-06-27 00:42:06 | vstinner | set | recipients: + vstinner, ezio.melotti, tburke |
| 2018-06-27 00:42:06 | vstinner | set | messageid: <1530060126.57.0.56676864532.issue33973@psf.upfronthosting.co.za> |
| 2018-06-27 00:42:06 | vstinner | link | issue33973 messages |
| 2018-06-27 00:42:06 | vstinner | create | |