Staging
v0.5.1
https://github.com/python/cpython
Revision 2d0c2286f8e19e5d6a45cf16f766382115431c2e authored by Mariatta on 13 February 2017, 23:48:40 UTC, committed by GitHub on 13 February 2017, 23:48:40 UTC
* Add a paragraph at the top for users, not builders, of Python.

* Use nicer rst url syntax to avoid borking paragraphs in the plain text.

Contributed by Ned Batchelder @nedbat

(cherry picked from commit 3cdbd68ce8230cff1afb67472b96fbfa7f047e32)
1 parent 89ddffb
Raw File
Tip revision: 2d0c2286f8e19e5d6a45cf16f766382115431c2e authored by Mariatta on 13 February 2017, 23:48:40 UTC
A few README tweaks (#73) (#79)
Tip revision: 2d0c228
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