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 gvanrossum
Recipients gvanrossum
Date 2008-04-07.18:29:01
SpamBayes Score 0.23872633
Marked as misclassified No
Message-id <1207592942.81.0.864010115323.issue2570@psf.upfronthosting.co.za>
In-reply-to
Content
In 3.0, r'\u1234' is a string of 6 characters (\, u, 1, 2, 3, 4).  In
2.6, after "from __future__ import unicode_literals" it is a string of
one character (code point 0x1234).  IMO the 3.0 behavior should be
imported from the future as well (using the same import).
History
Date User Action Args
2008-04-07 18:29:03gvanrossumsetspambayes_score: 0.238726 -> 0.23872633
recipients: + gvanrossum
2008-04-07 18:29:02gvanrossumsetspambayes_score: 0.238726 -> 0.238726
messageid: <1207592942.81.0.864010115323.issue2570@psf.upfronthosting.co.za>
2008-04-07 18:29:02gvanrossumlinkissue2570 messages
2008-04-07 18:29:01gvanrossumcreate