launchpad-dev team mailing list archive
-
launchpad-dev team
-
Mailing list archive
-
Message #08669
Re: SOA object ids
-
To:
Launchpad Community Development Team <launchpad-dev@xxxxxxxxxxxxxxxxxxx>
-
From:
Abel Deuring <abel.deuring@xxxxxxxxxxxxx>
-
Date:
Tue, 13 Dec 2011 10:19:37 +0100
-
In-reply-to:
<CAJ3HoZ1x9vMvEE_QEKatHBuf8CexgBpX8UkLc3=ukUpBq-3rnQ@mail.gmail.com>
-
User-agent:
Mozilla/5.0 (X11; Linux x86_64; rv:8.0) Gecko/20111124 Thunderbird/8.0
On 13.12.2011 07:26, Robert Collins wrote:
> We could say 'utf8' and leave it at that. Or we could say 'the
> printable subset of ascii' or some such. I'd just say non whitespace
> utf8, as strings are easier to deal with, and avoiding whitespace
> avoids most likely encoding issues.
No arbitrary utf8/utf16 or anything non-ASCII please, or we may have
funny things like the attached script.
Abel
# -*- coding: utf-8 -*-
a = u'Launchpad odd variants'
b = u'Lаunchpad odd variants'
c = u'Launchpad odd νariants'
d = u'Launchpad οdd variants'
print a == b
print a == c
print a == d
print b == c
print b == d
print c == d
Follow ups
References