closes bpo-37964: add F_GETPATH command to fcntl (GH-15550)

https://bugs.python.org/issue37964



Automerge-Triggered-By: @benjaminp
This commit is contained in:
Vinay Sharma 2019-08-29 07:26:17 +05:30 committed by Miss Islington (bot)
parent e4a5e9b5bb
commit 13f37f2ba8
4 changed files with 14 additions and 0 deletions

View file

@ -501,6 +501,9 @@ all_ins(PyObject* m)
#ifdef F_SETOWN
if (PyModule_AddIntMacro(m, F_SETOWN)) return -1;
#endif
#ifdef F_GETPATH
if (PyModule_AddIntMacro(m, F_GETPATH)) return -1;
#endif
#ifdef F_GETSIG
if (PyModule_AddIntMacro(m, F_GETSIG)) return -1;
#endif