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