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.

classification
Title: escape4chm.py script causing AttributeError in docs build
Type: Stage: resolved
Components: Build, Documentation Versions: Python 3.11
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: steve.dower Nosy List: miss-islington, steve.dower
Priority: normal Keywords: patch

Created on 2022-01-21 20:17 by steve.dower, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 30768 merged steve.dower, 2022-01-21 21:34
PR 30772 merged miss-islington, 2022-01-21 21:51
PR 30773 merged miss-islington, 2022-01-21 21:51
Messages (4)
msg411180 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2022-01-21 20:17
Exception occurred:
  File "D:\a\1\s\Doc\tools\extensions\escape4chm.py", line 44, in fixup_keywords
    with app.builder.open_file(outdir, outname + '.hhk', 'r') as f:
AttributeError: 'HTMLHelpBuilder' object has no attribute 'open_file'
The full traceback has been saved in C:\Users\VSSADM~1\AppData\Local\Temp\sphinx-err-9ikx8s0b.log, if you want to report the issue to the developers.
Please also report this if it was a user error, so that a better error message can be provided next time.
A bug report can be filed in the tracker at <https://github.com/sphinx-doc/sphinx/issues>. Thanks!
msg411192 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2022-01-21 21:51
New changeset 57d1855682dbeb9233ef3a531f9535c6442e9992 by Steve Dower in branch 'main':
bpo-46463: Fixes escape4chm.py script used when building the CHM documentation file (GH-30768)
https://github.com/python/cpython/commit/57d1855682dbeb9233ef3a531f9535c6442e9992
msg411198 - (view) Author: miss-islington (miss-islington) Date: 2022-01-21 22:11
New changeset d548c871716dfda73714d9f38b4e4219878a414e by Miss Islington (bot) in branch '3.10':
bpo-46463: Fixes escape4chm.py script used when building the CHM documentation file (GH-30768)
https://github.com/python/cpython/commit/d548c871716dfda73714d9f38b4e4219878a414e
msg411199 - (view) Author: miss-islington (miss-islington) Date: 2022-01-21 22:15
New changeset b37f3e993a978eacf05c5fddd716be2d31f18a8d by Miss Islington (bot) in branch '3.9':
bpo-46463: Fixes escape4chm.py script used when building the CHM documentation file (GH-30768)
https://github.com/python/cpython/commit/b37f3e993a978eacf05c5fddd716be2d31f18a8d
History
Date User Action Args
2022-04-11 14:59:55adminsetgithub: 90621
2022-01-24 14:20:56steve.dowersetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2022-01-21 22:15:52miss-islingtonsetmessages: + msg411199
2022-01-21 22:11:55miss-islingtonsetmessages: + msg411198
2022-01-21 21:51:40miss-islingtonsetpull_requests: + pull_request28958
2022-01-21 21:51:26miss-islingtonsetnosy: + miss-islington
pull_requests: + pull_request28957
2022-01-21 21:51:19steve.dowersetmessages: + msg411192
2022-01-21 21:34:28steve.dowersetkeywords: + patch
stage: patch review
pull_requests: + pull_request28953
2022-01-21 20:17:55steve.dowercreate