Staging
v0.8.1
https://github.com/python/cpython
Revision 16f16dbd0ed02cd1a7b270eb6dd80d9bd179902e authored by Christian Heimes on 09 September 2017, 15:22:11 UTC, committed by GitHub on 09 September 2017, 15:22:11 UTC
* bpo-31392: Improve SSL error handling on Windows

* Remove unnecessary Windows mention in NEWS.
(cherry picked from commit e6eb48c10dc389d1d70657593de6a6cb3087d3d1)
1 parent a4baf1c
Raw File
Tip revision: 16f16dbd0ed02cd1a7b270eb6dd80d9bd179902e authored by Christian Heimes on 09 September 2017, 15:22:11 UTC
[3.6] bpo-31400: Improve SSL error handling on Windows (GH-3463) (#3466)
Tip revision: 16f16db
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