]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
gh-97607: Fix content parsing in the impl-detail reST directive (#97652)
authorC.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
Sun, 2 Oct 2022 05:20:17 +0000 (00:20 -0500)
committerGitHub <noreply@github.com>
Sun, 2 Oct 2022 05:20:17 +0000 (07:20 +0200)
commite8165d47b852e933c176209ddc0b5836a9b0d5f4
treea4f1b908e8cd71df821542c7c9b5fc694f178157
parentdcc82331c8f05a6a149ac15c519d4fbae72692b2
gh-97607: Fix content parsing in the impl-detail reST directive (#97652)

* Don't parse content as arg in the impl-detail directive

This does not change the (untranslated) output,
but ensures that the doctree node metadata is correct.
which fixes gh-97607 with the text not being translated.
It also simplifies the code and logic
and makes it consistant with the docutils built-in directives.

* Remove unused branch from impl-detail directive handling no-content case

This is not used anywhere in the docs and lacks a clear use case,
and is more likely a mistake which is now flagged at build time.
This simplifies the logic from two code paths to one,
and makes the behavior consistant with similar built-in directives
(e.g. the various admonition types).

* Further simplify impl-detail reST directive code
Doc/tools/extensions/pyspecific.py