https://github.com/python/cpython/commit/6279b2dc15e76105dd641a054fd71a8ce921b6de commit: 6279b2dc15e76105dd641a054fd71a8ce921b6de branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: AA-Turner <[email protected]> date: 2024-01-20T10:33:15Z summary:
[3.12] Retain shorter tables of contents for Sphinx 5.2.3+ (GH-114318) (#114337) files: M Doc/conf.py diff --git a/Doc/conf.py b/Doc/conf.py index 50207468f63c94..862820637a8a5a 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -68,6 +68,10 @@ # Minimum version of sphinx required needs_sphinx = '4.2' +# Create table of contents entries for domain objects (e.g. functions, classes, +# attributes, etc.). Default is True. +toc_object_entries = False + # Ignore any .rst files in the includes/ directory; # they're embedded in pages but not rendered individually. # Ignore any .rst files in the venv/ directory. _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
