2016-06-04 16:06:26 -03:00
|
|
|
|
|
|
|
/* os module interface */
|
|
|
|
|
|
|
|
#ifndef Py_OSMODULE_H
|
|
|
|
#define Py_OSMODULE_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2016-12-27 08:57:39 -04:00
|
|
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03060000
|
2016-06-04 16:06:26 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PyOS_FSPath(PyObject *path);
|
2016-12-27 08:57:39 -04:00
|
|
|
#endif
|
2016-06-04 16:06:26 -03:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_OSMODULE_H */
|