Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Revert Γ‰ric's change
  • Loading branch information
StanFromIreland committed Dec 15, 2025
commit d03705700343e469bfcf1a21d2aee64f47d6983b
4 changes: 3 additions & 1 deletion Doc/tools/extensions/pydoc_topics.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,9 @@ def write_documents(self, _docnames: Set[str]) -> None:
docname = module_info[0]
if docname.startswith('library/'):
doc_file = docname.replace('library/', '')
self.module_docs[module_name] = f"{doc_file}#module-{module_name}"
self.module_docs[module_name] = (
f"{doc_file}#module-{module_name}"
)
Comment thread
hugovk marked this conversation as resolved.

for docname, label_ids in status_iterator(
doc_labels.items(),
Expand Down
Loading