This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author dmalcolm
Recipients BreamoreBoy, aronacher, benjamin.peterson, collinwinter, dmalcolm, gregory.p.smith, loewis, meador.inge
Date 2010-07-19.19:27:32
SpamBayes Score 5.7431967e-06
Marked as misclassified No
Message-id <1279567653.93.0.620034985184.issue2454@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2010-07-19 19:27:34dmalcolmsetrecipients: + dmalcolm, loewis, collinwinter, gregory.p.smith, benjamin.peterson, aronacher, meador.inge, BreamoreBoy
2010-07-19 19:27:33dmalcolmsetmessageid: <1279567653.93.0.620034985184.issue2454@psf.upfronthosting.co.za>
2010-07-19 19:27:32dmalcolmlinkissue2454 messages
2010-07-19 19:27:32dmalcolmcreate