mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
bpo-42655: Fix subprocess extra_groups gid conversion (GH-23762)
This commit is contained in:
parent
dd39123970
commit
0159e5efee
4 changed files with 9 additions and 11 deletions
|
@ -14,8 +14,8 @@ extern "C" {
|
|||
#ifndef MS_WINDOWS
|
||||
PyAPI_FUNC(PyObject *) _PyLong_FromUid(uid_t);
|
||||
PyAPI_FUNC(PyObject *) _PyLong_FromGid(gid_t);
|
||||
PyAPI_FUNC(int) _Py_Uid_Converter(PyObject *, void *);
|
||||
PyAPI_FUNC(int) _Py_Gid_Converter(PyObject *, void *);
|
||||
PyAPI_FUNC(int) _Py_Uid_Converter(PyObject *, uid_t *);
|
||||
PyAPI_FUNC(int) _Py_Gid_Converter(PyObject *, gid_t *);
|
||||
#endif /* MS_WINDOWS */
|
||||
|
||||
#if defined(PYPTHREAD_SIGMASK) || defined(HAVE_SIGWAIT) || \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue