Ezio Melotti <[email protected]> added the comment: Do you mean "if (!Py_UNICODE_ISLOWER(*s)) {" (with the '!')?
This sounds fine to me, but with this approach all the uncased characters will go through a Py_UNICODE_TO* macro, whereas with the current code only the cased ones are converted. I'm not sure this matters too much though. OTOH if the non-lowercase cased chars are always either upper or titlecased, checking for both should be equivalent. ---------- _______________________________________ Python tracker <[email protected]> <http://bugs.python.org/issue12266> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
