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 jim.correia
Recipients jim.correia
Date 2009-03-06.18:53:37
SpamBayes Score 0.00021693467
Marked as misclassified No
Message-id <1236365621.57.0.647888417793.issue5432@psf.upfronthosting.co.za>
In-reply-to
Content
The module doc string contains an example with hex escape sequences (see 
below). They are converted to their literal values by pydoc, which 
results in an unexpected encoding for the output of pydoc.

(raw string, or proper escaping solves the problem)

Relevant chunk of the file:

            anotherString="<hello & hi there!>",
            aUnicodeValue=u'M\xe4ssig, Ma\xdf',
            aTrueValue=True,
            aFalseValue=False,
        ),
        someData = Data("<binary gunk>"),
        someMoreData = Data("<lots of binary gunk>" * 10),
        aDate = 
datetime.datetime.fromtimestamp(time.mktime(time.gmtime())),
    )
    # unicode keys are possible, but a little awkward to use:
    pl[u'\xc5benraa'] = "That was a unicode key."
History
Date User Action Args
2009-03-06 18:53:41jim.correiasetrecipients: + jim.correia
2009-03-06 18:53:41jim.correiasetmessageid: <1236365621.57.0.647888417793.issue5432@psf.upfronthosting.co.za>
2009-03-06 18:53:39jim.correialinkissue5432 messages
2009-03-06 18:53:37jim.correiacreate