diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-01-21 22:15:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-21 22:15:44 (GMT) |
commit | b37f3e993a978eacf05c5fddd716be2d31f18a8d (patch) | |
tree | c55e396f928ef1132bb26fb65ca4325423483fe4 /Doc/tools | |
parent | 9e3ff821dac05e8fde030ec83bd988f3eba66065 (diff) | |
download | cpython-b37f3e993a978eacf05c5fddd716be2d31f18a8d.zip cpython-b37f3e993a978eacf05c5fddd716be2d31f18a8d.tar.gz cpython-b37f3e993a978eacf05c5fddd716be2d31f18a8d.tar.bz2 |
bpo-46463: Fixes escape4chm.py script used when building the CHM documentation file (GH-30768)
(cherry picked from commit 57d1855682dbeb9233ef3a531f9535c6442e9992)
Co-authored-by: Steve Dower <steve.dower@python.org>
Diffstat (limited to 'Doc/tools')
-rw-r--r-- | Doc/tools/extensions/escape4chm.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Doc/tools/extensions/escape4chm.py b/Doc/tools/extensions/escape4chm.py index e999971..8997097 100644 --- a/Doc/tools/extensions/escape4chm.py +++ b/Doc/tools/extensions/escape4chm.py @@ -5,6 +5,7 @@ effect on some MBCS Windows systems. https://bugs.python.org/issue32174 """ +import pathlib import re from html.entities import codepoint2name @@ -39,12 +40,12 @@ def fixup_keywords(app, exception): return getLogger(__name__).info('fixing HTML escapes in keywords file...') - outdir = app.builder.outdir + outdir = pathlib.Path(app.builder.outdir) outname = app.builder.config.htmlhelp_basename - with app.builder.open_file(outdir, outname + '.hhk', 'r') as f: + with open(outdir / (outname + '.hhk'), 'rb') as f: index = f.read() - with app.builder.open_file(outdir, outname + '.hhk', 'w') as f: - f.write(index.replace(''', ''')) + with open(outdir / (outname + '.hhk'), 'wb') as f: + f.write(index.replace(b''', b''')) def setup(app): # `html-page-context` event emitted when the HTML builder has |