[issue2454] sha and md5 fixer

Dave Malcolm report at bugs.python.org
Mon Jul 19 21:27:33 CEST 2010


Dave Malcolm <dmalcolm at redhat.com> added the comment:

The 'u' prefix went away in Python 3, use an unadorned '' or "" for a unicode value.

$ python3
Python 3.1.2 (r312:79147, May 25 2010, 12:21:57) 
[GCC 4.4.3 20100422 (Red Hat 4.4.3-18)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> u"foo"
  File "<stdin>", line 1
    u"foo"
         ^
SyntaxError: invalid syntax

----------
nosy: +dmalcolm

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue2454>
_______________________________________


More information about the Python-bugs-list mailing list