Staging
v0.5.1
https://github.com/python/cpython
Revision 414ab5de48cfc1d8be40e330bca0611a14e28ea5 authored by Miss Islington (bot) on 27 January 2020, 16:28:02 UTC, committed by GitHub on 27 January 2020, 16:28:02 UTC
(cherry picked from commit 7023288dc500008609e7a4d12ae710c2093c3fc6)

Co-authored-by: Nick Coghlan <ncoghlan@gmail.com>
1 parent b0a6ec2
Raw File
Tip revision: 414ab5de48cfc1d8be40e330bca0611a14e28ea5 authored by Miss Islington (bot) on 27 January 2020, 16:28:02 UTC
Ignore NEWS snippets in code coverage stats (GH-18194)
Tip revision: 414ab5d
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