Message4707

Author undefined
Recipients undefined
Date 2009-05-22.03:15:02
SpamBayes Score 0.018687269
Marked as misclassified No
Message-id <1242962102.52.0.979932257724.issue1355@psf.upfronthosting.co.za>
In-reply-to
Content
following the latest tutorial for python 2.5, specifically
http://www.python.org/doc/2.5.4/tut/node5.html...

incorrect:
>>> ur'Hello\u0020World !'
u'Hello\\u0020World !'

correct:
>>> ur'Hello\\u0020World !'
u'Hello\\\\u0020World !'

that first one should be: u'Hello World !' (as shown in the tutorial and
tested on python 2.5.2).
History
Date User Action Args
2009-05-22 03:15:02undefinedsetrecipients: + undefined
2009-05-22 03:15:02undefinedsetmessageid: <1242962102.52.0.979932257724.issue1355@psf.upfronthosting.co.za>
2009-05-22 03:15:02undefinedlinkissue1355 messages
2009-05-22 03:15:02undefinedcreate