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: F_GETPATH is not available in fcntl.fcntl
Type: enhancement Stage: resolved
Components: Library (Lib) Versions: Python 3.9
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: benjamin.peterson, christian.heimes, miss-islington, twouters, vinay0410
Priority: normal Keywords: patch

Created on 2019-08-27 14:53 by vinay0410, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 15550 merged vinay0410, 2019-08-27 15:55
PR 15568 merged benjamin.peterson, 2019-08-29 04:28
Messages (5)
msg350635 - (view) Author: Vinay Sharma (vinay0410) * Date: 2019-08-27 14:53
F_GETPATH cmd/operator is not present in fcntl module.
This is specific to macos and is only available in macos.

https://developer.apple.com/library/archive/documentation/System/Conceptual/ManPages_iPhoneOS/man2/fcntl.2.html

This can be also be verified using `man fcntl`
msg350636 - (view) Author: Christian Heimes (christian.heimes) * (Python committer) Date: 2019-08-27 14:56
Since it's a feature request, I have reset the version list to 3.9.
msg350637 - (view) Author: Vinay Sharma (vinay0410) * Date: 2019-08-27 16:16
I have opened a PR, but no reviewers, have been assigned.
Could you please look into that ?
msg350700 - (view) Author: miss-islington (miss-islington) Date: 2019-08-29 01:56
New changeset 13f37f2ba8b1fa39f312dca920e847d9c0313c77 by Miss Islington (bot) (Vinay Sharma) in branch 'master':
closes bpo-37964: add F_GETPATH command to fcntl (GH-15550)
https://github.com/python/cpython/commit/13f37f2ba8b1fa39f312dca920e847d9c0313c77
msg350713 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2019-08-29 05:06
New changeset 465e5d5bcbfd42be058d3584ccb421405eba1594 by Benjamin Peterson in branch 'master':
bpo-37964: Make sure test works if TESTFN is in a non-ASCII directory. (GH-15568)
https://github.com/python/cpython/commit/465e5d5bcbfd42be058d3584ccb421405eba1594
History
Date User Action Args
2022-04-11 14:59:19adminsetgithub: 82145
2019-08-29 05:06:52benjamin.petersonsetnosy: + benjamin.peterson
messages: + msg350713
2019-08-29 04:28:20benjamin.petersonsetpull_requests: + pull_request15244
2019-08-29 01:56:22miss-islingtonsetstatus: open -> closed

nosy: + miss-islington
messages: + msg350700

resolution: fixed
stage: patch review -> resolved
2019-08-27 16:16:31vinay0410setmessages: + msg350637
2019-08-27 15:55:00vinay0410setkeywords: + patch
stage: needs patch -> patch review
pull_requests: + pull_request15226
2019-08-27 14:56:29christian.heimessetversions: - Python 2.7, Python 3.5, Python 3.6, Python 3.7, Python 3.8
nosy: + christian.heimes

messages: + msg350636

stage: needs patch
2019-08-27 14:53:19vinay0410create