[Python-checkins] bpo-46016: Fix rest syntax of GH-29993 (GH-30006)

tiran webhook-mailer at python.org
Thu Dec 9 09:24:43 EST 2021


https://github.com/python/cpython/commit/b123ad8030a4ad15c8dbb7cb3638caf625943878
commit: b123ad8030a4ad15c8dbb7cb3638caf625943878
branch: main
author: Kumar Aditya <rahuladitya303 at gmail.com>
committer: tiran <christian at python.org>
date: 2021-12-09T15:24:32+01:00
summary:

bpo-46016: Fix rest syntax of GH-29993 (GH-30006)

files:
M Doc/whatsnew/3.11.rst
M Misc/NEWS.d/next/Library/2021-12-08-19-15-03.bpo-46016.s9PuyF.rst

diff --git a/Doc/whatsnew/3.11.rst b/Doc/whatsnew/3.11.rst
index 4a113cdb8905c..7a828663e7f34 100644
--- a/Doc/whatsnew/3.11.rst
+++ b/Doc/whatsnew/3.11.rst
@@ -332,7 +332,7 @@ unicodedata
 fcntl
 -----
 
-* On FreeBSD, the `F_DUP2FD` and `F_DUP2FD_CLOEXEC` flags respectively
+* On FreeBSD, the :attr:`F_DUP2FD` and :attr:`F_DUP2FD_CLOEXEC` flags respectively
   are supported, the former equals to ``dup2`` usage while the latter set
   the ``FD_CLOEXEC`` flag in addition.
 
diff --git a/Misc/NEWS.d/next/Library/2021-12-08-19-15-03.bpo-46016.s9PuyF.rst b/Misc/NEWS.d/next/Library/2021-12-08-19-15-03.bpo-46016.s9PuyF.rst
index 7308c542aacf5..485bd86f3145e 100644
--- a/Misc/NEWS.d/next/Library/2021-12-08-19-15-03.bpo-46016.s9PuyF.rst
+++ b/Misc/NEWS.d/next/Library/2021-12-08-19-15-03.bpo-46016.s9PuyF.rst
@@ -1 +1 @@
-Adding `F_DUP2FD` and `F_DUP2FD_CLOEXEC` constants from FreeBSD into the fcntl module.
+Adding :attr:`F_DUP2FD` and :attr:`F_DUP2FD_CLOEXEC` constants from FreeBSD into the fcntl module.



More information about the Python-checkins mailing list