Message221919
| Author | belopolsky |
|---|---|
| Recipients | belopolsky, ezio.melotti, lemburg, loewis, r.david.murray, serhiy.storchaka, terry.reedy, vstinner |
| Date | 2014-06-29.23:48:57 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1404085738.13.0.599102472217.issue18236@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
For future reference, the code discussed above is in the following portion of the patch: -#define Py_UNICODE_ISSPACE(ch) \ - ((ch) < 128U ? _Py_ascii_whitespace[(ch)] : _PyUnicode_IsWhitespace(ch)) +#define Py_UNICODE_ISSPACE(ch) \ + ((ch) == ' ' || \ + ((ch) < 128U ? (ch) - 0x9U < 5U : _PyUnicode_IsWhitespace(ch))) |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2014-06-29 23:48:58 | belopolsky | set | recipients: + belopolsky, lemburg, loewis, terry.reedy, vstinner, ezio.melotti, r.david.murray, serhiy.storchaka |
| 2014-06-29 23:48:58 | belopolsky | set | messageid: <1404085738.13.0.599102472217.issue18236@psf.upfronthosting.co.za> |
| 2014-06-29 23:48:58 | belopolsky | link | issue18236 messages |
| 2014-06-29 23:48:57 | belopolsky | create | |