Staging
v0.8.1
https://github.com/python/cpython
Revision b03623227ed1264e3cac4e6bb4878d96b91aa484 authored by Miss Islington (bot) on 07 September 2017, 18:35:03 UTC, committed by Benjamin Peterson on 07 September 2017, 18:35:03 UTC
(cherry picked from commit a853a8ba7850381d49b284295dd6f0dc491dbe44)
1 parent b0d0217
Raw File
Tip revision: b03623227ed1264e3cac4e6bb4878d96b91aa484 authored by Miss Islington (bot) on 07 September 2017, 18:35:03 UTC
[3.6] fixes bpo-31373: fix undefined floating-point demotions (GH-3396) (#3424)
Tip revision: b036232
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