From: Bénédikt Tran <10796600+picnixz@users.noreply.github.com> Date: Tue, 21 Jan 2025 11:43:09 +0000 (+0100) Subject: gh-129064: Fix RST markup for the NEWS and What's New entries (#129131) X-Git-Tag: v3.14.0a5~317 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6a0f915aaea869cae799349047eef6f9f3c6e2dc;p=thirdparty%2FPython%2Fcpython.git gh-129064: Fix RST markup for the NEWS and What's New entries (#129131) This amends the NEWS and What's New entries introduced in 0a6412f9cc9e694e76299cfbd73ec969b7d47af6. --- diff --git a/Doc/deprecations/pending-removal-in-3.16.rst b/Doc/deprecations/pending-removal-in-3.16.rst index 58f7c01bf394..b408a6d72feb 100644 --- a/Doc/deprecations/pending-removal-in-3.16.rst +++ b/Doc/deprecations/pending-removal-in-3.16.rst @@ -82,7 +82,7 @@ Pending removal in Python 3.16 * :mod:`sysconfig`: - * The ``~sysconfig.expand_makefile_vars`` function + * The :func:`!sysconfig.expand_makefile_vars` function has been deprecated since Python 3.14. Use the ``vars`` argument of :func:`sysconfig.get_paths` instead. diff --git a/Misc/NEWS.d/next/Library/2025-01-20-16-02-38.gh-issue-129064.JXasgJ.rst b/Misc/NEWS.d/next/Library/2025-01-20-16-02-38.gh-issue-129064.JXasgJ.rst index 5939fdc8ef34..93a1eda350d1 100644 --- a/Misc/NEWS.d/next/Library/2025-01-20-16-02-38.gh-issue-129064.JXasgJ.rst +++ b/Misc/NEWS.d/next/Library/2025-01-20-16-02-38.gh-issue-129064.JXasgJ.rst @@ -1,2 +1,2 @@ -Deprecate ``sysconfig.expand_makefile_vars``, in favor of using +Deprecate :func:`!sysconfig.expand_makefile_vars`, in favor of using :func:`sysconfig.get_paths` with the ``vars`` argument.