[Zope3-dev] FreeBSD Test Results - Zope 3 / Python 2.3 - Not OK :-(

Tim Peters tim@zope.com
Thu, 23 Jan 2003 10:22:14 -0500


[Marius Gedminas]
> That's how they are supposed to look like.

Then it's pure luck that's what I saw <wink>.

> '=A4' is U+00A4 CURRENCY SIGN.
> I suppose you could replace them with \u00A4 or \xA4 -- the docstring
> already contains Unicode escapes.

\u00A4 is correct, then, and I'll make that change.  Strings with non-ASC=
II
characters are simply ambiguous, and that's why Python 2.3 warns about th=
em.
\xA4 is ambiguous too, in the absence of declaring the intended source-fi=
le
encoding.  Since \u00A4 is what was intended, that's the way to spell it =
--
piece o' cake.