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.

Author mdk
Recipients docs@python, mdk, steve.dower
Date 2021-03-20.16:26:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1616257595.38.0.162769956248.issue43570@roundup.psfhosted.org>
In-reply-to
Content
In case an `.. audit-event::` has a content, Sphinx gets confused:

It will provide both "auto-generated" and the content in po files, for interactivehook for example we have:

    #: library/sys.rst:953
    msgid ""
    "Raises an :ref:`auditing event <auditing>` ``cpython.run_interactivehook`` "
    "with argument ``hook``."
    msgstr ""

    #: library/sys.rst:955
    msgid ""
    "Raises an :ref:`auditing event <auditing>` ``cpython.run_interactivehook`` "
    "with the hook object as the argument when the hook is called on startup."
    msgstr ""
    "Lève un :ref:`évènement d'audit <auditing>` ``cpython.run_interactivehook`` "
    "avec l'objet de point d'entrée comme argument lorsqu'il est appelé au "
    "démarrage."

Which is not needed as only the content is used to render the doc, but it's the least issue. The issue is that Sphinx will then check the used one (content) against the translation of the auto-generated one leading it to trigger a warning on case the :ref: used don't match, typically for:


    .. audit-event:: sys.unraisablehook hook,unraisable sys.unraisablehook

       Raise an auditing event ``sys.unraisablehook`` with arguments
       ``hook``, ``unraisable`` when an exception that cannot be handled occurs.
       The ``unraisable`` object is the same as what will be passed to the hook.
       If no hook has been set, ``hook`` may be ``None``.

    
Sphinx will compare the auto-generated one:

    Raises an :ref:`auditing event <auditing>` ``sys.unraisablehook`` with arguments ``hook``, ``unraisable``.

Against our translated one (Lève un évènement d'audit ...).

Issue is, as in "Raise an auditing event" there's no :ref:, but as we translated "Raises an :ref:`auditing event <auditing>`" we used one, Sphinx whines about inconsistent term references.

As far as I understand it, it's related, or near, the:

    if self.content:
        self.state.nested_parse(self.content, self.content_offset, pnode)
    else:
        n, m = self.state.inline_text(text, self.lineno)
        pnode.extend(n + m)

part of pyspecific.py.
History
Date User Action Args
2021-03-20 16:26:35mdksetrecipients: + mdk, docs@python, steve.dower
2021-03-20 16:26:35mdksetmessageid: <1616257595.38.0.162769956248.issue43570@roundup.psfhosted.org>
2021-03-20 16:26:35mdklinkissue43570 messages
2021-03-20 16:26:35mdkcreate