Staging
v0.5.1
https://github.com/python/cpython
Revision b138dd296a206e92ebec09b540bb88a1539563e4 authored by Steve Dower on 11 February 2020, 17:32:52 UTC, committed by GitHub on 11 February 2020, 17:32:52 UTC
1 parent f3fda37
Raw File
Tip revision: b138dd296a206e92ebec09b540bb88a1539563e4 authored by Steve Dower on 11 February 2020, 17:32:52 UTC
Fix ordering issue in Windows release upload script (GH-18465)
Tip revision: b138dd2
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