Staging
v0.5.1
https://github.com/python/cpython
Revision 2fa5b2ac4485c5c9083b4b0459dd9b691daaea28 authored by Miss Islington (bot) on 29 November 2018, 00:52:11 UTC, committed by GitHub on 29 November 2018, 00:52:11 UTC

test_eintr no longer fails if the signal handler has not been called.
(cherry picked from commit 2956bffbc00127af65f69e04d7979021a21d1288)

Co-authored-by: Victor Stinner <vstinner@redhat.com>
1 parent d46d753
Raw File
Tip revision: 2fa5b2ac4485c5c9083b4b0459dd9b691daaea28 authored by Miss Islington (bot) on 29 November 2018, 00:52:11 UTC
bpo-35189, bpo-35316: Make test_eintr less strict (GH-10782)
Tip revision: 2fa5b2a
posixmodule.h
/* Declarations shared between the different POSIX-related modules */

#ifndef Py_POSIXMODULE_H
#define Py_POSIXMODULE_H
#ifdef __cplusplus
extern "C" {
#endif

#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif

#ifndef Py_LIMITED_API
#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 *);
#endif /* MS_WINDOWS */
#endif

#ifdef __cplusplus
}
#endif
#endif /* !Py_POSIXMODULE_H */
back to top