[Cython] from __future__ import ...
Stefan Behnel
stefan_ml at behnel.de
Sat May 17 06:45:30 CEST 2008
Hi,
Stefan Behnel wrote:
> Lisandro Dalcin wrote:
>> in Python 2.6 "abc" and b"abc" both return a byte string
>> 'str' type, and 'bytes' type is an alias for 'str' type.
>
> As I said before, that's fine with me.
Done. Cython can now parse
"abc"
u"abc"
b"abc"
in the same source, and also
ur"abc"
br"abc"
which were previously unavailable.
However, it doesn't have a "bytes" type alias yet. I'm not sure where to put
that. Maybe Robert or Greg have an idea?
Stefan
More information about the Cython-dev
mailing list