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 grv87
Recipients docs@python, grv87
Date 2013-08-14.11:59:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1376481546.2.0.725412367622.issue18736@psf.upfronthosting.co.za>
In-reply-to
Content
HTML pages inside CHM documentation use the following tag to set applied character set:
    <meta http-equiv="Content-Type" content="text/html; charset=iso8859_1" />

`iso8859_1` is neither valid character set according to IANA registry nor is recognized by most browsers (I've checked IE, Firefox and Opera).

This isn't notable for text in English. But, in `Python Standard Library` in section `4.7.1 String Methods` there is a documentation for str.casefold(). This paragraph contains German letter `ß`.
Without defined character set this letter can be displayed wrongly, depending on user's regional settings. In my Russian I see in CHM `Я`. Firefox displays it as `�`.

Fix of charset to `ISO-8859-1` could resolve the problem.

P.S. Use of UTF-8 may be more convenient for preventing future errors.
History
Date User Action Args
2013-08-14 11:59:06grv87setrecipients: + grv87, docs@python
2013-08-14 11:59:06grv87setmessageid: <1376481546.2.0.725412367622.issue18736@psf.upfronthosting.co.za>
2013-08-14 11:59:06grv87linkissue18736 messages
2013-08-14 11:59:05grv87create