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: modindex.html builds incorrectly in Python 3
Type: Stage:
Components: Documentation Versions: Python 3.0
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: collinwinter
Priority: normal Keywords:

Created on 2007-03-20 23:14 by collinwinter, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
modindex.html collinwinter, 2007-03-20 23:14 Bad modindex.html
doc_tools.patch collinwinter, 2007-03-20 23:15 Patch to allow Doc/tools/ files to work in Py 3.
Messages (3)
msg31595 - (view) Author: Collin Winter (collinwinter) * (Python committer) Date: 2007-03-20 23:14
Running "make distclean; make" in Python 3's Doc/ directory (as of r54467) leaves me with a content-less modindex.html. The header and footer are present, but there's no list of modules. The same steps on trunk/ (SVN HEAD) produce the expected module list.

The mkmodindex step reports "0 index nodes". Watching the lines that mkmodindex:main() parses, none of them are related to modules (in the correct format or otherwise).

I've attached a copy of the bad modindex.html that "make" generated. Also attached is a patch that allows Doc/tools/ to work with Python 3 (which it doesn't as of r54467).
msg31596 - (view) Author: Collin Winter (collinwinter) * (Python committer) Date: 2007-03-20 23:15
File Added: doc_tools.patch
msg31597 - (view) Author: Collin Winter (collinwinter) * (Python committer) Date: 2007-03-21 02:00
I'm not sure what which change I've made in Doc/tools/ did it, but modindex.html now builds correctly after "make distclean". I'll check in the changes soon. Closing.
History
Date User Action Args
2022-04-11 14:56:23adminsetgithub: 44748
2008-01-06 22:29:46adminsetkeywords: - py3k
versions: + Python 3.0
2007-03-20 23:14:08collinwintercreate