mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
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:
parent
e4a5e9b5bb
commit
13f37f2ba8
4 changed files with 14 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue