[issue26835] Add file-sealing ops to fcntl

2020-10-21 Thread Christian Heimes
Change by Christian Heimes : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue26835] Add file-sealing ops to fcntl

2020-10-10 Thread Irit Katriel
Irit Katriel added the comment: This seems complete, can it be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___

[issue26835] Add file-sealing ops to fcntl

2019-05-31 Thread Christian Heimes
Christian Heimes added the comment: New changeset 8cbb5b6625268400d6e9092b75b06d6f90398dc9 by Christian Heimes in branch 'master': bpo-26835: Add file sealing constants to fcntl (GH-13694) https://github.com/python/cpython/commit/8cbb5b6625268400d6e9092b75b06d6f90398dc9 --

[issue26835] Add file-sealing ops to fcntl

2019-05-31 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +13580 pull_request: https://github.com/python/cpython/pull/13694 ___ Python tracker ___

[issue26835] Add file-sealing ops to fcntl

2019-04-29 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- keywords: +patch pull_requests: +12938 stage: needs patch -> patch review ___ Python tracker ___

[issue26835] Add file-sealing ops to fcntl

2019-04-27 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- nosy: +nanjekyejoannah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue26835] Add file-sealing ops to fcntl

2016-06-12 Thread Christian Heimes
Changes by Christian Heimes : -- assignee: christian.heimes -> ___ Python tracker ___ ___

[issue26835] Add file-sealing ops to fcntl

2016-04-24 Thread Christian Heimes
New submission from Christian Heimes: The file-sealing ops are useful for memfd_create(). The new syscall and ops are only available on Linux with a recent kernel. http://man7.org/linux/man-pages/man2/fcntl.2.html http://man7.org/linux/man-pages/man2/memfd_create.2.html Code: #include