We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15ee821 commit cf38120Copy full SHA for cf38120
1 file changed
Modules/posixmodule.c
@@ -11176,6 +11176,15 @@ all_ins(PyObject *d)
11176
#ifdef O_EXLOCK
11177
if (ins(d, "O_EXLOCK", (long)O_EXLOCK)) return -1;
11178
#endif
11179
+#ifdef O_EXEC
11180
+ if (ins(d, "O_EXEC", (long)O_EXEC)) return -1;
11181
+#endif
11182
+#ifdef O_SEARCH
11183
+ if (ins(d, "O_SEARCH", (long)O_SEARCH)) return -1;
11184
11185
+#ifdef O_TTY_INIT
11186
+ if (ins(d, "O_TTY_INIT", (long)O_TTY_INIT)) return -1;
11187
11188
#ifdef PRIO_PROCESS
11189
if (ins(d, "PRIO_PROCESS", (long)PRIO_PROCESS)) return -1;
11190
0 commit comments