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
_______________________________________________
Cython-dev mailing list
[email protected]
http://codespeak.net/mailman/listinfo/cython-dev

Reply via email to