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: Add fcntl.F_OFD_XXXX constant
Type: enhancement Stage: resolved
Components: Library (Lib) Versions: Python 3.9
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: corona10, serhiy.storchaka, vstinner
Priority: normal Keywords: patch

Created on 2019-10-27 13:27 by corona10, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 16956 merged corona10, 2019-10-27 13:31
Messages (4)
msg355466 - (view) Author: Dong-hee Na (corona10) * (Python committer) Date: 2019-10-27 13:27
Since Linux 3.15 is released.
fcntl.F_OFD_XXXX is used for python code.
It can be found on GitHub.
(https://github.com/ceph/ceph/blob/41d3fdc554ce920a631c7c6699a383134173fcff/qa/workunits/fs/misc/filelock_interrupt.py#L13)

I am working on this issue.
msg355504 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2019-10-27 21:01
See also issue22367.
msg355511 - (view) Author: Dong-hee Na (corona10) * (Python committer) Date: 2019-10-28 04:27
> See also issue22367.

Okay I will take a look at it also. :)
msg355515 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2019-10-28 07:31
New changeset 3bfc8e0fcc707d200c267ff05b052fd6a63c985a by Serhiy Storchaka (Dong-hee Na) in branch 'master':
bpo-38602: Add fcntl.F_OFD_XXXX for fcntlmodule (GH-16956)
https://github.com/python/cpython/commit/3bfc8e0fcc707d200c267ff05b052fd6a63c985a
History
Date User Action Args
2022-04-11 14:59:22adminsetgithub: 82783
2019-10-28 07:31:53serhiy.storchakasetstatus: open -> closed
type: enhancement
resolution: fixed
stage: patch review -> resolved
2019-10-28 07:31:34serhiy.storchakasetmessages: + msg355515
2019-10-28 04:27:30corona10setmessages: + msg355511
2019-10-27 21:01:08serhiy.storchakasetmessages: + msg355504
2019-10-27 13:31:24corona10setkeywords: + patch
stage: patch review
pull_requests: + pull_request16484
2019-10-27 13:27:03corona10create