https://github.com/python/cpython
Raw File
Tip revision: 000593c0f97ac9b75b56064a957b84a3aaa60674 authored by Ned Deily on 16 March 2022, 13:27:21 UTC
3.7.13
Tip revision: 000593c
osmodule.h

/* os module interface */

#ifndef Py_OSMODULE_H
#define Py_OSMODULE_H
#ifdef __cplusplus
extern "C" {
#endif

#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03060000
PyAPI_FUNC(PyObject *) PyOS_FSPath(PyObject *path);
#endif

#ifdef __cplusplus
}
#endif
#endif /* !Py_OSMODULE_H */
back to top