Staging
v0.8.1
Revision 167cbde50a88ec2a7d26b2cb9891d5e32bdfbfb5 authored by Victor Stinner on 14 September 2017, 21:04:56 UTC, committed by GitHub on 14 September 2017, 21:04:56 UTC
Call thread.join() to prevent the "dangling thread" warning.
1 parent ff40ecd
Raw File
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