]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-46016: Fix rest syntax of GH-29993 (GH-30006)
authorKumar Aditya <rahuladitya303@gmail.com>
Thu, 9 Dec 2021 14:24:32 +0000 (19:54 +0530)
committerGitHub <noreply@github.com>
Thu, 9 Dec 2021 14:24:32 +0000 (15:24 +0100)
Doc/whatsnew/3.11.rst
Misc/NEWS.d/next/Library/2021-12-08-19-15-03.bpo-46016.s9PuyF.rst

index 4a113cdb8905c05f7baa3eee45683da71b9c07c7..7a828663e7f34ed0fef431416581709331742b07 100644 (file)
@@ -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.
 
index 7308c542aacf51d6153b4c78976fbe0eae77bcde..485bd86f3145e8902d11092c17b45328f59c246d 100644 (file)
@@ -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.