MRAB wrote:
[...]
> The other special case is with \u in a Unicode string:
>
>  >>> ur"\u0041"
> u'A'

this isn't true for 3.0:

>>> r"\u0041"
'\\u0041'

(there's no "u" because it's a string, not a bytes literal)

and as far as i can tell, that's correct behaviour according to the docs.

andrew

--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to