Message111765
| Author |
vstinner |
| Recipients |
BreamoreBoy, arnimar, jafo, jwilk, lemburg, pitrou, vstinner |
| Date |
2010年07月28日.02:16:51 |
| SpamBayes Score |
0.00022299109 |
| Marked as misclassified |
No |
| Message-id |
<1280283414.82.0.778755034223.issue1813@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
There is also a locale normalization function in unicodeobject.c: normalize_encoding(). This function uses "if (ISUPPER(*e)) *l++ = TOLOWER(*e++);" which uses the Python, *locale-independent*, implementation of ctype.
We should maybe use the ISUPPER / TOLOWER in codecs.c.
Anyway, a function should be fixed, but I don't know which one :-) |
|