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: posix module: add O_EXEC, O_SEARCH, O_TTY_INIT
Type: enhancement Stage: resolved
Components: Versions: Python 3.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: jcea Nosy List: jcea, neologix, pino, python-dev
Priority: normal Keywords: patch

Created on 2012-04-24 16:36 by pino, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
fcntl_h_constants.diff pino, 2012-04-24 16:36 review
Messages (4)
msg159168 - (view) Author: Pino Toscano (pino) Date: 2012-04-24 16:36
The posix module exposes already quite some O_* constants, but it misses few POSIX ones (see [1]), but it misses O_EXEC, O_SEARCH, and O_TTY_INIT.

The attached patch adds them.

[1] http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/fcntl.h.html
msg159183 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2012-04-24 18:20
I will take care of this.
msg159189 - (view) Author: Jesús Cea Avión (jcea) * (Python committer) Date: 2012-04-24 18:46
I add some other constants too.
msg159191 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-04-24 19:00
New changeset 34de406f566d by Jesus Cea in branch 'default':
Issue #14661: posix module: add O_EXEC, O_SEARCH, O_TTY_INIT
http://hg.python.org/cpython/rev/34de406f566d

New changeset 2023f48b32b6 by Jesus Cea in branch 'default':
Closes Issue #14661: posix module: add O_EXEC, O_SEARCH, O_TTY_INIT (I add some Solaris constants too)
http://hg.python.org/cpython/rev/2023f48b32b6
History
Date User Action Args
2022-04-11 14:57:29adminsetgithub: 58866
2012-04-24 19:01:20jceasetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2012-04-24 19:00:49python-devsetnosy: + python-dev
messages: + msg159191
2012-04-24 18:46:49jceasetmessages: + msg159189
2012-04-24 18:20:51jceasetassignee: jcea

messages: + msg159183
nosy: + jcea
2012-04-24 17:40:57pitrousetnosy: + neologix

stage: patch review
2012-04-24 16:36:20pinocreate