Staging
v0.8.1
https://github.com/python/cpython
Revision 86f0c8215c2fdaeef58d185ff00b854a45971f84 authored by Emmanuel Arias on 29 April 2019, 02:24:24 UTC, committed by Serhiy Storchaka on 29 April 2019, 02:24:24 UTC
1 parent e0dcb85
Raw File
Tip revision: 86f0c8215c2fdaeef58d185ff00b854a45971f84 authored by Emmanuel Arias on 29 April 2019, 02:24:24 UTC
bpo-36729: Delete unused text variable on tests. (GH-12959)
Tip revision: 86f0c82
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