On 10/27/07, Christian Heimes <[EMAIL PROTECTED]> wrote: > Guido van Rossum wrote:
> The second line is a fprintf(stderr, "%s\n", char *path). > Do you see the > difference between "testäöü" and "testõ÷³"? One likely difference is that testäöü should be a legitimate (unicode) Python name, but testõ÷³ probably isn't, because the division sign isn't alphanumeric. Also, there is a chance that testäöü was already in the appropriate normalized form, but testõ÷³ probably isn't, because of the superscript. Whether either of these *should* matter in this case, I couldn't tell from your post. -jJ -jJ _______________________________________________ Python-3000 mailing list [email protected] http://mail.python.org/mailman/listinfo/python-3000 Unsubscribe: http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com
