expose O_PATH if possible

This commit is contained in:
Benjamin Peterson 2013-03-13 10:27:41 -05:00
parent fe1c471cb1
commit 3b965a237c
3 changed files with 6 additions and 0 deletions

View file

@ -10858,6 +10858,9 @@ all_ins(PyObject *d)
#ifdef O_SEARCH
if (ins(d, "O_SEARCH", (long)O_SEARCH)) return -1;
#endif
#ifdef O_PATH
if (ins(d, "O_PATH", (long)O_PATH)) return -1;
#endif
#ifdef O_TTY_INIT
if (ins(d, "O_TTY_INIT", (long)O_TTY_INIT)) return -1;
#endif