Message221919
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))) |
|
| 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: <[email protected]> |
| 2014-06-29 23:48:58 | belopolsky | link | issue18236 messages |
| 2014-06-29 23:48:57 | belopolsky | create | |
|