https://github.com/python/cpython
Raw File
Tip revision: 9471106fd5b47418ffd2f90c6b729f58698f573e authored by Pablo Galindo on 13 January 2022, 19:36:27 UTC
Python 3.11.0a4
Tip revision: 9471106
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