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.

classification
Title: fcntl module add F_DUP2FD_CLOEXEC
Type: enhancement Stage: resolved
Components: FreeBSD Versions: Python 3.11
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: vstinner Nosy List: christian.heimes, devnexen, koobs, kumaraditya, vstinner
Priority: normal Keywords: patch

Created on 2021-12-08 19:13 by devnexen, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 29993 merged devnexen, 2021-12-08 19:13
PR 30006 merged kumaraditya, 2021-12-09 14:23
PR 30009 merged vstinner, 2021-12-09 16:28
Messages (5)
msg408046 - (view) Author: David CARLIER (devnexen) * Date: 2021-12-08 21:14
Exposing these specific freebsd constants to the module.
msg408050 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-12-08 22:28
New changeset 267539bff700c2493778c07eeb1642b9584c4826 by David CARLIER in branch 'main':
bpo-46016: fcntl module add FreeBSD's F_DUP2FD_CLOEXEC flag support (GH-29993)
https://github.com/python/cpython/commit/267539bff700c2493778c07eeb1642b9584c4826
msg408105 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2021-12-09 11:06
GH-29993 broke docs:

python tools/rstlint.py -i tools -i ./venv -i README.rst
[2] whatsnew/3.11.rst:335: default role used
1 problem with severity 2 found.
make: *** [Makefile:216: check] Error 1
msg408126 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2021-12-09 14:24
New changeset b123ad8030a4ad15c8dbb7cb3638caf625943878 by Kumar Aditya in branch 'main':
bpo-46016: Fix rest syntax of GH-29993 (GH-30006)
https://github.com/python/cpython/commit/b123ad8030a4ad15c8dbb7cb3638caf625943878
msg408164 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2021-12-09 23:02
New changeset da3cf4304f6dd530533bbd2c0913b674cd803744 by Victor Stinner in branch 'main':
bpo-46016: GHA Doc job now also runs "make check" (GH-30009)
https://github.com/python/cpython/commit/da3cf4304f6dd530533bbd2c0913b674cd803744
History
Date User Action Args
2022-04-11 14:59:53adminsetgithub: 90174
2021-12-09 23:02:30vstinnersetmessages: + msg408164
2021-12-09 16:28:06vstinnersetpull_requests: + pull_request28232
2021-12-09 14:27:19christian.heimessetpriority: release blocker -> normal
status: open -> closed
resolution: fixed
stage: patch review -> resolved
2021-12-09 14:24:42christian.heimessetmessages: + msg408126
2021-12-09 14:23:17kumaradityasetkeywords: + patch
nosy: + kumaraditya

pull_requests: + pull_request28230
stage: needs patch -> patch review
2021-12-09 11:14:04christian.heimessetpriority: normal -> release blocker
assignee: vstinner
2021-12-09 11:06:51christian.heimessetstatus: closed -> open

nosy: + christian.heimes
messages: + msg408105

resolution: fixed -> (no value)
stage: resolved -> needs patch
2021-12-08 22:29:11vstinnersetstatus: open -> closed
resolution: fixed
stage: resolved
2021-12-08 22:28:55vstinnersetnosy: + vstinner
messages: + msg408050
2021-12-08 21:14:38devnexensetmessages: + msg408046
2021-12-08 19:13:05devnexencreate