[issue38602] Add fcntl.F_OFD_XXXX constant

2019-10-28 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> enhancement ___ Python tracker ___

[issue38602] Add fcntl.F_OFD_XXXX constant

2019-10-28 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 3bfc8e0fcc707d200c267ff05b052fd6a63c985a by Serhiy Storchaka (Dong-hee Na) in branch 'master': bpo-38602: Add fcntl.F_OFD_ for fcntlmodule (GH-16956) https://github.com/python/cpython/commit/3bfc8e0fcc707d200c267ff05b052fd6a63c985a

[issue38602] Add fcntl.F_OFD_XXXX constant

2019-10-27 Thread Dong-hee Na
Dong-hee Na added the comment: > See also issue22367. Okay I will take a look at it also. :) -- ___ Python tracker ___ ___

[issue38602] Add fcntl.F_OFD_XXXX constant

2019-10-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: See also issue22367. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue38602] Add fcntl.F_OFD_XXXX constant

2019-10-27 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch pull_requests: +16484 stage: -> patch review pull_request: https://github.com/python/cpython/pull/16956 ___ Python tracker ___

[issue38602] Add fcntl.F_OFD_XXXX constant

2019-10-27 Thread Dong-hee Na
New submission from Dong-hee Na : Since Linux 3.15 is released. fcntl.F_OFD_ 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.