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.

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:58belopolskysetrecipients: + belopolsky, lemburg, loewis, terry.reedy, vstinner, ezio.melotti, r.david.murray, serhiy.storchaka
2014-06-29 23:48:58belopolskysetmessageid: <1404085738.13.0.599102472217.issue18236@psf.upfronthosting.co.za>
2014-06-29 23:48:58belopolskylinkissue18236 messages
2014-06-29 23:48:57belopolskycreate