Staging
v0.5.1
https://github.com/python/cpython
Revision b7daabd711274a009e70556020efeae502a85f0b authored by Anthony Sottile on 02 June 2019, 00:13:26 UTC, committed by Ivan Levkivskyi on 02 June 2019, 00:13:25 UTC
1 parent b7fade4
Raw File
Tip revision: b7daabd711274a009e70556020efeae502a85f0b authored by Anthony Sottile on 02 June 2019, 00:13:26 UTC
Improve version added references in `typing` module docs (GH-13457)
Tip revision: b7daabd
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