diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-10-08 21:26:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-08 21:26:44 (GMT) |
commit | 64bcedce8d61e1daa9ff7980cc07988574049b1f (patch) | |
tree | 6402cc53df50012609da560374b344a166eba7ad /Doc/conf.py | |
parent | 177254c96f9258a62e3e571c2aee0b642070a374 (diff) | |
download | cpython-64bcedce8d61e1daa9ff7980cc07988574049b1f.zip cpython-64bcedce8d61e1daa9ff7980cc07988574049b1f.tar.gz cpython-64bcedce8d61e1daa9ff7980cc07988574049b1f.tar.bz2 |
bpo-32174: Let .chm document display non-ASCII characters properly (GH-9758)
Let .chm document display non-ASCII characters properly
Escape the `body` part of .chm source file to 7-bit ASCII, to fix visual effect on some MBCS Windows systems.
(cherry picked from commit 6261ae9b01fb8429b779169f8de37ff567c144e8)
Co-authored-by: animalize <animalize@users.noreply.github.com>
Diffstat (limited to 'Doc/conf.py')
-rw-r--r-- | Doc/conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/conf.py b/Doc/conf.py index 43826ec..e2758bc 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -13,7 +13,7 @@ sys.path.append(os.path.abspath('tools/extensions')) # --------------------- extensions = ['sphinx.ext.coverage', 'sphinx.ext.doctest', - 'pyspecific', 'c_annotations'] + 'pyspecific', 'c_annotations', 'escape4chm'] # General substitutions. project = 'Python' |